[cmake-commits] king committed CMakeLists.txt 1.72 1.73

cmake-commits at cmake.org cmake-commits at cmake.org
Mon Mar 12 22:36:58 EST 2007


Update of /cvsroot/CMake/CMake/Tests/SimpleInstall
In directory public:/mounts/ram/cvs-serv2515

Modified Files:
	CMakeLists.txt 
Log Message:
BUG: Remove spaces from test output paths.  Not all make tools can handle it.  Ths SubDirSpaces test is meant for that purpose anyway.


Index: CMakeLists.txt
===================================================================
RCS file: /cvsroot/CMake/CMake/Tests/SimpleInstall/CMakeLists.txt,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -d -r1.72 -r1.73
--- CMakeLists.txt	12 Mar 2007 14:23:06 -0000	1.72
+++ CMakeLists.txt	13 Mar 2007 03:36:56 -0000	1.73
@@ -1,11 +1,11 @@
 PROJECT (TestSimpleInstall)
 SET(CMAKE_VERBOSE_MAKEFILE 1)
 SET(CMAKE_RUNTIME_OUTPUT_DIRECTORY
-  "${TestSimpleInstall_BINARY_DIR}/bin dir")
+  "${TestSimpleInstall_BINARY_DIR}/bin")
 SET(CMAKE_ARCHIVE_OUTPUT_DIRECTORY
-  "${TestSimpleInstall_BINARY_DIR}/lib static")
+  "${TestSimpleInstall_BINARY_DIR}/lib/static")
 SET(CMAKE_LIBRARY_OUTPUT_DIRECTORY
-  "${TestSimpleInstall_BINARY_DIR}/lib dir")
+  "${TestSimpleInstall_BINARY_DIR}/lib")
 
 # Skip generating the rpath pointing at the build tree to make sure
 # the executable is installed with the proper rpath in the install



More information about the Cmake-commits mailing list