mirror of
https://github.com/Kitware/CMake.git
synced 2025-10-17 07:11:52 +08:00
Help: Add documentation for INSTALL_REMOVE_ENVIROMENT_RPATH
This commit is contained in:
@@ -228,6 +228,7 @@ Properties on Targets
|
||||
/prop_tgt/IMPORT_SUFFIX
|
||||
/prop_tgt/INCLUDE_DIRECTORIES
|
||||
/prop_tgt/INSTALL_NAME_DIR
|
||||
/prop_tgt/INSTALL_REMOVE_ENVIRONMENT_RPATH
|
||||
/prop_tgt/INSTALL_RPATH
|
||||
/prop_tgt/INSTALL_RPATH_USE_LINK_PATH
|
||||
/prop_tgt/INTERFACE_AUTOUIC_OPTIONS
|
||||
|
@@ -372,6 +372,7 @@ Variables that Control the Build
|
||||
/variable/CMAKE_INCLUDE_CURRENT_DIR
|
||||
/variable/CMAKE_INCLUDE_CURRENT_DIR_IN_INTERFACE
|
||||
/variable/CMAKE_INSTALL_NAME_DIR
|
||||
/variable/CMAKE_INSTALL_REMOVE_ENVIRONMENT_RPATH
|
||||
/variable/CMAKE_INSTALL_RPATH
|
||||
/variable/CMAKE_INSTALL_RPATH_USE_LINK_PATH
|
||||
/variable/CMAKE_INTERPROCEDURAL_OPTIMIZATION
|
||||
|
10
Help/prop_tgt/INSTALL_REMOVE_ENVIRONMENT_RPATH.rst
Normal file
10
Help/prop_tgt/INSTALL_REMOVE_ENVIRONMENT_RPATH.rst
Normal file
@@ -0,0 +1,10 @@
|
||||
INSTALL_REMOVE_ENVIRONMENT_RPATH
|
||||
--------------------------------
|
||||
|
||||
Removes compiler defined rpaths durimg installation.
|
||||
|
||||
``INSTALL_REMOVE_ENVIRONMENT_RPATH`` is a boolean that if set to ``True`` will
|
||||
remove compiler defined rpaths from the project if the user also defines rpath
|
||||
with :prop_tgt:`INSTALL_RPATH`. This property is initialized by whether the
|
||||
value of :variable:`CMAKE_INSTALL_REMOVE_ENVIRONMENT_RPATH` is set when a
|
||||
target is created.
|
@@ -0,0 +1,6 @@
|
||||
add-install-remove-environment-rpath
|
||||
------------------------------------
|
||||
|
||||
* A new target property, :prop_tgt:`INSTALL_REMOVE_ENVIRONMENT_RPATH`, was
|
||||
added which removes compiler-defined rpaths from a target. This property is
|
||||
initialized by :variable:`CMAKE_INSTALL_REMOVE_ENVIRONMENT_RPATH`.
|
9
Help/variable/CMAKE_INSTALL_REMOVE_ENVIRONMENT_RPATH.rst
Normal file
9
Help/variable/CMAKE_INSTALL_REMOVE_ENVIRONMENT_RPATH.rst
Normal file
@@ -0,0 +1,9 @@
|
||||
CMAKE_INSTALL_REMOVE_ENVIRONMENT_RPATH
|
||||
--------------------------------------
|
||||
|
||||
Removes compiler defined rpaths durimg installation.
|
||||
|
||||
``CMAKE_INSTALL_REMOVE_ENVIRONMENT_RPATH`` is a boolean that if set to ``true``
|
||||
removes compiler defined rpaths from the project if the user also defines rpath
|
||||
with :prop_tgt:`INSTALL_RPATH`. This is used to initialize the target property
|
||||
:prop_tgt:`INSTALL_REMOVE_ENVIRONMENT_RPATH` for all targets.
|
Reference in New Issue
Block a user