[Cmake-commits] [cmake-commits] alex committed cmDocumentVariables.cxx 1.33 1.34

cmake-commits at cmake.org cmake-commits at cmake.org
Sat Jun 27 11:17:39 EDT 2009


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv4959

Modified Files:
	cmDocumentVariables.cxx 
Log Message:
STYLE: document CMAKE_SKIP_INSTALL_ALL_DEPENDENCY variable

Alex


Index: cmDocumentVariables.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmDocumentVariables.cxx,v
retrieving revision 1.33
retrieving revision 1.34
diff -C 2 -d -r1.33 -r1.34
*** cmDocumentVariables.cxx	10 Jun 2009 18:11:20 -0000	1.33
--- cmDocumentVariables.cxx	27 Jun 2009 15:17:37 -0000	1.34
***************
*** 458,461 ****
--- 458,474 ----
  
    cm->DefineProperty
+     ("CMAKE_SKIP_INSTALL_ALL_DEPENDENCY", cmProperty::VARIABLE,
+      "Don't make the install target depend on the all target.",
+      "By default, the \"install\" target depends on the \"all\" target. "
+      "This has the effect, that when \"make install\" is invoked or INSTALL "
+      "is built, first the \"all\" target is built, then the installation "
+      "starts. "
+      "If CMAKE_SKIP_INSTALL_ALL_DEPENDENCY is set to TRUE, this dependency "
+      "is not created, so the installation process will start immediately, "
+      "independent from whether the project has been completely built or not."
+      ,false,
+      "Variables That Change Behavior");
+ 
+   cm->DefineProperty
      ("CMAKE_MODULE_PATH", cmProperty::VARIABLE,
       "Path to look for cmake modules to load.",



More information about the Cmake-commits mailing list