mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
An new environment variable 'CMAKE_INSTALL_MODE' is introduced, which can be used to ask CMake to create symbolic links instead of copying files during a file(INSTALL ...). The operation is at the file level only, directory trees are still created using actual directories, not links. Signed-off-by: Felix Lelchuk <felix.lelchuk@gmx.de>
7 lines
271 B
Plaintext
7 lines
271 B
Plaintext
This file should be placed in CMAKE_INSTALL_PREFIX
|
|
as a copy if the CMAKE_INSTALL_MODE environment variable
|
|
is unset or equals "COPY".
|
|
If the variable's value is "SYMLINK" or "SYMLINK_OR_COPY",
|
|
the CMAKE_INSTALL_PREFIX should rather receive a symbolic
|
|
link to this file.
|