summaryrefslogtreecommitdiffstats
path: root/Tests/COnly/CMakeLists.txt
blob: dd64d1e4807ac4b67a082c87e32d1414229fc90f (plain)
1
2
3
4
5
6
# a simple C only test case
PROJECT (conly C)
ADD_LIBRARY(c1 STATIC libc1.c)
ADD_LIBRARY(c2 SHARED libc2.c)
ADD_EXECUTABLE (conly conly.c foo.c foo.h)
TARGET_LINK_LIBRARIES(conly c1 c2)