summaryrefslogtreecommitdiffstats
path: root/Source/cmDocumentVariables.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2008-02-12 01:13:21 (GMT)
committerBrad King <brad.king@kitware.com>2008-02-12 01:13:21 (GMT)
commita7e287975cd2937d9cbf0d9383ad08da9b58bb53 (patch)
treef17a2d39e9b34ce8112428cb0f114aa6a768bee6 /Source/cmDocumentVariables.cxx
parenta0715048dadc4402417a93cca15f3d2ef0db42de (diff)
downloadCMake-a7e287975cd2937d9cbf0d9383ad08da9b58bb53.zip
CMake-a7e287975cd2937d9cbf0d9383ad08da9b58bb53.tar.gz
CMake-a7e287975cd2937d9cbf0d9383ad08da9b58bb53.tar.bz2
ENH: Update documentation of EXECUTABLE_OUTPUT_PATH and LIBRARY_OUTPUT_PATH to reference their replacements.
Diffstat (limited to 'Source/cmDocumentVariables.cxx')
-rw-r--r--Source/cmDocumentVariables.cxx11
1 files changed, 9 insertions, 2 deletions
diff --git a/Source/cmDocumentVariables.cxx b/Source/cmDocumentVariables.cxx
index c70ddea..4466a0f 100644
--- a/Source/cmDocumentVariables.cxx
+++ b/Source/cmDocumentVariables.cxx
@@ -814,13 +814,20 @@ void cmDocumentVariables::DefineVariables(cmake* cm)
"Variables that Control the Build");
cm->DefineProperty
("EXECUTABLE_OUTPUT_PATH", cmProperty::VARIABLE,
- "Location for all executables in a project.",
+ "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,
"Variables that Control the Build");
cm->DefineProperty
("LIBRARY_OUTPUT_PATH", cmProperty::VARIABLE,
- "Location for all libraries in a project.",
+ "Old library location variable.",
+ "This variable should no longer be used as of CMake 2.6. "
+ "Use the ARCHIVE_OUTPUT_DIRECTORY, LIBRARY_OUTPUT_PATH, 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,
"Variables that Control the Build");