[cmake-commits] martink committed CMakeLists.txt 1.9 1.10
cmake-commits at cmake.org
cmake-commits at cmake.org
Fri May 11 10:22:22 EDT 2007
Update of /cvsroot/CMake/CMake/Tests/Simple
In directory public:/mounts/ram/cvs-serv1569/Tests/Simple
Modified Files:
CMakeLists.txt
Log Message:
ENH: some more CMakeList cleanups
Index: CMakeLists.txt
===================================================================
RCS file: /cvsroot/CMake/CMake/Tests/Simple/CMakeLists.txt,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- CMakeLists.txt 27 Nov 2006 21:13:41 -0000 1.9
+++ CMakeLists.txt 11 May 2007 14:22:20 -0000 1.10
@@ -1,7 +1,7 @@
# a simple test case
project (Simple)
-add_executable (simple simple.cxx)
+add_executable (Simple simple.cxx)
add_library (simpleLib STATIC
simpleLib.cxx
@@ -9,9 +9,9 @@
simpleWe.cpp
)
-target_link_libraries (simple simpleLib)
+target_link_libraries (Simple simpleLib)
# make sure optimized libs are not used by debug builds
if(CMAKE_BUILD_TYPE MATCHES Debug)
- target_link_libraries(simple optimized c:/not/here.lib )
+ target_link_libraries(Simple optimized c:/not/here.lib )
endif(CMAKE_BUILD_TYPE MATCHES Debug)
More information about the Cmake-commits
mailing list