2013-10-29 13:40:09 +04:00
|
|
|
CMAKE_FIND_NO_INSTALL_PREFIX
|
|
|
|
----------------------------
|
|
|
|
|
|
|
|
Ignore the :variable:`CMAKE_INSTALL_PREFIX` when searching for assets.
|
|
|
|
|
2013-11-14 15:04:40 +04:00
|
|
|
CMake adds the :variable:`CMAKE_INSTALL_PREFIX` and the
|
|
|
|
:variable:`CMAKE_STAGING_PREFIX` variable to the
|
2013-10-29 13:40:09 +04:00
|
|
|
:variable:`CMAKE_SYSTEM_PREFIX_PATH` by default. This variable may be set
|
|
|
|
on the command line to control that behavior.
|
|
|
|
|
2015-08-18 08:34:01 +03:00
|
|
|
Set ``CMAKE_FIND_NO_INSTALL_PREFIX`` to ``TRUE`` to tell
|
|
|
|
:command:`find_package` not to search in the :variable:`CMAKE_INSTALL_PREFIX`
|
|
|
|
or :variable:`CMAKE_STAGING_PREFIX` by default. Note that the
|
2013-10-29 13:40:09 +04:00
|
|
|
prefix may still be searched for other reasons, such as being the same prefix
|
|
|
|
as the CMake installation, or for being a built-in system prefix.
|