diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-10-29 09:40:09 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-10-31 15:40:24 (GMT) |
commit | fe057ab3cd2469af5440307f1bf2a4f69d686db3 (patch) | |
tree | a18ed9fe31ea025f4255cfb6de45a17ecb36c4b6 /Tests/RunCMake/CMakeLists.txt | |
parent | 047c1ec4570a630a3ae813abf47422eeee58dc6f (diff) | |
download | CMake-fe057ab3cd2469af5440307f1bf2a4f69d686db3.zip CMake-fe057ab3cd2469af5440307f1bf2a4f69d686db3.tar.gz CMake-fe057ab3cd2469af5440307f1bf2a4f69d686db3.tar.bz2 |
Allow disabling adding the install prefix to the prefix search path.
In certain scenarios, it is preferable to keep a 'dirty' install prefix
than to clear it, and to expect that content will not be found there.
Add a CMAKE_FIND_NO_INSTALL_PREFIX variable that can be set to disable
searching the install prefix.
Diffstat (limited to 'Tests/RunCMake/CMakeLists.txt')
-rw-r--r-- | Tests/RunCMake/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tests/RunCMake/CMakeLists.txt b/Tests/RunCMake/CMakeLists.txt index 97bf14d..99a0fb3 100644 --- a/Tests/RunCMake/CMakeLists.txt +++ b/Tests/RunCMake/CMakeLists.txt @@ -109,6 +109,7 @@ add_RunCMake_test(CMP0004) add_RunCMake_test(TargetPolicies) add_RunCMake_test(alias_targets) add_RunCMake_test(interface_library) +add_RunCMake_test(no_install_prefix) find_package(Qt4 QUIET) find_package(Qt5Core QUIET) |