diff options
author | Brad King <brad.king@kitware.com> | 2009-02-20 19:03:41 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-02-20 19:03:41 (GMT) |
commit | f04fed206f3c5d349b1b39eaf792f4a078672416 (patch) | |
tree | cf79b973312bf9598b1d24a925facc6874a0d10b /Source | |
parent | c6051d7ad0c012d6d8f0a7ebdfb79c6f47d38288 (diff) | |
download | CMake-f04fed206f3c5d349b1b39eaf792f4a078672416.zip CMake-f04fed206f3c5d349b1b39eaf792f4a078672416.tar.gz CMake-f04fed206f3c5d349b1b39eaf792f4a078672416.tar.bz2 |
ENH: Clarify docs of old *_OUTPUT_PATH vars
This clarifies the documentation of EXECUTABLE_OUTPUT_PATH and
LIBRARY_OUTPUT_PATH to sound less like deprecation.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmDocumentVariables.cxx | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/Source/cmDocumentVariables.cxx b/Source/cmDocumentVariables.cxx index fb7f116..02f1d6a 100644 --- a/Source/cmDocumentVariables.cxx +++ b/Source/cmDocumentVariables.cxx @@ -931,21 +931,17 @@ void cmDocumentVariables::DefineVariables(cmake* cm) cm->DefineProperty ("EXECUTABLE_OUTPUT_PATH", cmProperty::VARIABLE, "Old executable location variable.", - "This variable should no longer be used as of CMake 2.6. " - "Use the RUNTIME_OUTPUT_DIRECTORY target property instead. " - "It will override this variable if it is set.\n" - "If set, this is the directory where all executables " - "built during the build process will be placed.",false, + "The target property RUNTIME_OUTPUT_DIRECTORY supercedes " + "this variable for a target if it is set. " + "Executable targets are otherwise placed in this directory.",false, "Variables that Control the Build"); cm->DefineProperty ("LIBRARY_OUTPUT_PATH", cmProperty::VARIABLE, "Old library location variable.", - "This variable should no longer be used as of CMake 2.6. " - "Use the ARCHIVE_OUTPUT_DIRECTORY, LIBRARY_OUTPUT_DIRECTORY, and " - "RUNTIME_OUTPUT_DIRECTORY target properties instead. " - "They will override this variable if they are set.\n" - "If set, this is the directory where all the libraries " - "built during the build process will be placed.",false, + "The target properties ARCHIVE_OUTPUT_DIRECTORY, " + "LIBRARY_OUTPUT_DIRECTORY, and RUNTIME_OUTPUT_DIRECTORY supercede " + "this variable for a target if they are set. " + "Library targets are otherwise placed in this directory.",false, "Variables that Control the Build"); |