https://github.com/Kitware/CMake
Raw File
Tip revision: 433c6d4689ca86f1a8d8d966be0204e98f95b968 authored by Brad King on 12 November 2014, 14:41:58 UTC
CMake 3.1.0-rc2
Tip revision: 433c6d4
CMAKE_FIND_NO_INSTALL_PREFIX.rst
CMAKE_FIND_NO_INSTALL_PREFIX
----------------------------

Ignore the :variable:`CMAKE_INSTALL_PREFIX` when searching for assets.

CMake adds the :variable:`CMAKE_INSTALL_PREFIX` and the
:variable:`CMAKE_STAGING_PREFIX` variable to the
:variable:`CMAKE_SYSTEM_PREFIX_PATH` by default. This variable may be set
on the command line to control that behavior.

Set :variable:`CMAKE_FIND_NO_INSTALL_PREFIX` to TRUE to tell find_package not
to search in the :variable:`CMAKE_INSTALL_PREFIX` or
:variable:`CMAKE_STAGING_PREFIX` by default.  Note that the
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.
back to top