mirror of
https://github.com/reactos/CMake.git
synced 2024-12-13 22:58:41 +00:00
3bb707f0a1
Improve formatting, primarily by: * Adding links to relevant commands, properties, generators, and so on. * Converting code, symbols, paths, and so on to fixed-width fonts. * Hard wrapping lines to 80 characters or less.
15 lines
650 B
ReStructuredText
15 lines
650 B
ReStructuredText
CMAKE_SKIP_INSTALL_RPATH
|
|
------------------------
|
|
|
|
Do not include RPATHs in the install tree.
|
|
|
|
Normally CMake uses the build tree for the RPATH when building
|
|
executables etc on systems that use RPATH. When the software is
|
|
installed the executables etc are relinked by CMake to have the
|
|
install RPATH. If this variable is set to true then the software is
|
|
always installed without RPATH, even if RPATH is enabled when
|
|
building. This can be useful for example to allow running tests from
|
|
the build directory with RPATH enabled before the installation step.
|
|
To omit RPATH in both the build and install steps, use
|
|
:variable:`CMAKE_SKIP_RPATH` instead.
|