diff options
author | Alexander Neundorf <neundorf@kde.org> | 2009-06-27 11:17:37 -0400 |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2009-06-27 11:17:37 -0400 |
commit | e03c3664660fc728085a88d13e0280a59ef8a980 (patch) | |
tree | 11a6cdf9218983eeca6f0ff347b9628be940148d /Source/cmDocumentVariables.cxx | |
parent | 6f2aab1b8e60f6fd57f633eb16bee4a453a5c8f8 (diff) | |
download | cmake-e03c3664660fc728085a88d13e0280a59ef8a980.tar.gz |
STYLE: document CMAKE_SKIP_INSTALL_ALL_DEPENDENCY variable
Alex
Diffstat (limited to 'Source/cmDocumentVariables.cxx')
-rw-r--r-- | Source/cmDocumentVariables.cxx | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Source/cmDocumentVariables.cxx b/Source/cmDocumentVariables.cxx index b61c7e90cf..bcc67d6fa4 100644 --- a/Source/cmDocumentVariables.cxx +++ b/Source/cmDocumentVariables.cxx @@ -457,6 +457,19 @@ void cmDocumentVariables::DefineVariables(cmake* cm) "Variables That Change Behavior"); 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.", "Specifies a path to override the default search path for " |