Sign in
cmake
/
cmake
/
76f08a107b344daff524974868ab30353bd9b255
/
.
/
Tests
/
CMakeCommands
/
target_link_libraries
/
depB.cpp
blob: 276a91ae4bf343f95adcba85115658869f660b1e [
file
] [
log
] [
blame
]
#include
"depB.h"
#include
"depA.h"
#include
"libgenex.h"
int
DepB
::
foo
()
{
DepA
a
;
LibGenex
lg
;
return
a
.
foo
()
+
lg
.
foo
();
}