KWSys Nightly Date Stamp
[cmake.git] / Tests / Simple / CMakeLists.txt
blobdc965a733711cd352b5d58370f925a1fc6d627e4
1 # a simple test case
2 project (Simple)
4 add_executable (Simple simple.cxx)
6 add_library (simpleLib STATIC 
7   simpleLib.cxx 
8   simpleCLib.c 
9   simpleWe.cpp
10   )
12 target_link_libraries (Simple simpleLib)
14 # make sure optimized libs are not used by debug builds
15 if(CMAKE_BUILD_TYPE MATCHES Debug)
16   target_link_libraries(Simple optimized c:/not/here.lib )
17 endif(CMAKE_BUILD_TYPE MATCHES Debug)