summaryrefslogtreecommitdiffstats
path: root/Source/cmDocumentVariables.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2009-06-10 18:11:20 (GMT)
committerBrad King <brad.king@kitware.com>2009-06-10 18:11:20 (GMT)
commit42c4a1d71fa818855f1cb67962e94a1f50b18f03 (patch)
treeeac9cebbd42be6e126d51b17de966c9806e743c7 /Source/cmDocumentVariables.cxx
parent7797237629739cc370c396cf7252996aa3af57bf (diff)
downloadCMake-42c4a1d71fa818855f1cb67962e94a1f50b18f03.zip
CMake-42c4a1d71fa818855f1cb67962e94a1f50b18f03.tar.gz
CMake-42c4a1d71fa818855f1cb67962e94a1f50b18f03.tar.bz2
ENH: Document variable CMAKE_NO_BUILTIN_CHRPATH
This adds documentation for the variable which was previously missing. See issue #9130.
Diffstat (limited to 'Source/cmDocumentVariables.cxx')
-rw-r--r--Source/cmDocumentVariables.cxx10
1 files changed, 10 insertions, 0 deletions
diff --git a/Source/cmDocumentVariables.cxx b/Source/cmDocumentVariables.cxx
index 32c8d69..b61c7e9 100644
--- a/Source/cmDocumentVariables.cxx
+++ b/Source/cmDocumentVariables.cxx
@@ -895,6 +895,16 @@ void cmDocumentVariables::DefineVariables(cmake* cm)
"Variables that Control the Build");
cm->DefineProperty
+ ("CMAKE_NO_BUILTIN_CHRPATH", cmProperty::VARIABLE,
+ "Do not use the builtin ELF editor to fix RPATHs on installation.",
+ "When an ELF binary needs to have a different RPATH after installation "
+ "than it does in the build tree, CMake uses a builtin editor to change "
+ "the RPATH in the installed copy. "
+ "If this variable is set to true then CMake will relink the binary "
+ "before installation instead of using its builtin editor.",false,
+ "Variables that Control the Build");
+
+ cm->DefineProperty
("CMAKE_SKIP_BUILD_RPATH", cmProperty::VARIABLE,
"Do not include RPATHs in the build tree.",
"Normally CMake uses the build tree for the RPATH when building "