[cmake-commits] andy committed CMakeLists.txt 1.1 1.2

cmake-commits at cmake.org cmake-commits at cmake.org
Fri Feb 23 10:31:48 EST 2007


Update of /cvsroot/CMake/CMake/Tests/SimpleExclude/dirC/dirA
In directory public:/mounts/ram/cvs-serv9462/Tests/SimpleExclude/dirC/dirA

Modified Files:
	CMakeLists.txt 
Log Message:
ENH: Force libraries to be static


Index: CMakeLists.txt
===================================================================
RCS file: /cvsroot/CMake/CMake/Tests/SimpleExclude/dirC/dirA/CMakeLists.txt,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- CMakeLists.txt	22 Feb 2007 13:39:12 -0000	1.1
+++ CMakeLists.txt	23 Feb 2007 15:31:46 -0000	1.2
@@ -1,6 +1,6 @@
-add_library(t1 t1.c)
+add_library(t1 STATIC t1.c)
 
-add_library(t2 t2.c)
+add_library(t2 STATIC t2.c)
 
 add_executable(t3 t3.c)
 



More information about the Cmake-commits mailing list