[cmake-commits] king committed CMakeLists.txt 1.66 1.67

cmake-commits at cmake.org cmake-commits at cmake.org
Mon Mar 12 09:23:07 EST 2007


Update of /cvsroot/CMake/CMake/Tests/Complex
In directory public:/mounts/ram/cvs-serv18504/Complex

Modified Files:
	CMakeLists.txt 
Log Message:
ENH: Testing new target properties RUNTIME_OUTPUT_DIRECTORY, LIBRARY_OUTPUT_DIRECTORY, and ARCHIVE_OUTPUT_DIRECTORY.  This is an incremental fix for bug#2240 and bug#4210.


Index: CMakeLists.txt
===================================================================
RCS file: /cvsroot/CMake/CMake/Tests/Complex/CMakeLists.txt,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -d -r1.66 -r1.67
--- CMakeLists.txt	30 Oct 2006 15:38:55 -0000	1.66
+++ CMakeLists.txt	12 Mar 2007 14:23:05 -0000	1.67
@@ -137,13 +137,9 @@
 #
 # Lib and exe path
 #
-SET (LIBRARY_OUTPUT_PATH 
-     ${Complex_BINARY_DIR}/bin/ CACHE INTERNAL
-     "Single output directory for building all libraries.")
-
-SET (EXECUTABLE_OUTPUT_PATH 
-     ${Complex_BINARY_DIR}/bin/ CACHE INTERNAL
-     "Single output directory for building all executables.")
+SET(CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${Complex_BINARY_DIR}/lib/static")
+SET(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${Complex_BINARY_DIR}/lib")
+SET(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${Complex_BINARY_DIR}/bin")
 
 MESSAGE (Test " " escape " " semi-colon " " \; \;)
 #



More information about the Cmake-commits mailing list