Sign in
cmake
/
cmake
/
76f08a107b344daff524974868ab30353bd9b255
/
.
/
Tests
/
CMakeCommands
/
target_link_libraries
/
targetA.cpp
blob: b23b7a0aac242ce911dc90e787d375ab794c7c97 [
file
] [
log
] [
blame
]
#include
"depB.h"
#include
"depC.h"
#include
"depIfaceOnly.h"
#include
"subdirlib.h"
int
main
(
int
,
char
**)
{
DepA
a
;
DepB
b
;
DepC
c
;
DepIfaceOnly
iface_only
;
SubDirLibObject
sd
;
return
a
.
foo
()
+
b
.
foo
()
+
c
.
foo
()
+
iface_only
.
foo
()
+
sd
.
foo
();
}