[cmake-commits] king committed CMakeLists.txt 1.9 1.10
cmake-commits at cmake.org
cmake-commits at cmake.org
Fri Dec 21 20:19:25 EST 2007
Update of /cvsroot/CMake/CMake/Tests/BuildDepends
In directory public:/mounts/ram/cvs-serv6700
Modified Files:
CMakeLists.txt
Log Message:
BUG: Enable CMAKE_SUPPRESS_REGENERATION because the entire test runs during the inital configuration.
Index: CMakeLists.txt
===================================================================
RCS file: /cvsroot/CMake/CMake/Tests/BuildDepends/CMakeLists.txt,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- CMakeLists.txt 21 Dec 2007 17:22:12 -0000 1.9
+++ CMakeLists.txt 22 Dec 2007 01:19:23 -0000 1.10
@@ -6,6 +6,11 @@
# and source files for the test project.
project(BuildDepends)
+# This entire test takes place during the initial
+# configure step. It should not run again when the
+# project is built.
+set(CMAKE_SUPPRESS_REGENERATION 1)
+
file(MAKE_DIRECTORY ${BuildDepends_BINARY_DIR}/Project)
message("Creating Project/foo.cxx")
write_file(${BuildDepends_BINARY_DIR}/Project/foo.cxx
More information about the Cmake-commits
mailing list