diff options
author | Brad King <brad.king@kitware.com> | 2014-01-09 14:37:17 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2014-01-09 14:37:17 (GMT) |
commit | 69c366a28178027a5cf2629c0240d1709ae9ab55 (patch) | |
tree | fe61369dffe946ccb6b17830994d901e3af4662c /Tests/RunCMake/install/SkipInstallRulesWarning-check.cmake | |
parent | f3a9eb45605638b42ca431731080875470cc229a (diff) | |
parent | be0458c5620d611a772fd3a25312cf5ae6cb492c (diff) | |
download | CMake-69c366a28178027a5cf2629c0240d1709ae9ab55.zip CMake-69c366a28178027a5cf2629c0240d1709ae9ab55.tar.gz CMake-69c366a28178027a5cf2629c0240d1709ae9ab55.tar.bz2 |
Merge topic 'optional-install'
be0458c InstallRules: added new variable to disable generation of install rules
Diffstat (limited to 'Tests/RunCMake/install/SkipInstallRulesWarning-check.cmake')
-rw-r--r-- | Tests/RunCMake/install/SkipInstallRulesWarning-check.cmake | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Tests/RunCMake/install/SkipInstallRulesWarning-check.cmake b/Tests/RunCMake/install/SkipInstallRulesWarning-check.cmake new file mode 100644 index 0000000..2807698 --- /dev/null +++ b/Tests/RunCMake/install/SkipInstallRulesWarning-check.cmake @@ -0,0 +1,9 @@ +if(NOT EXISTS "${RunCMake_TEST_BINARY_DIR}/CMakeCache.txt") + message(FATAL_ERROR "missing test prerequisite CMakeCache.txt") +endif() + +set(CMAKE_INSTALL_CMAKE "${RunCMake_TEST_BINARY_DIR}/cmake_install.cmake") + +if(EXISTS ${CMAKE_INSTALL_CMAKE}) + message(FATAL_ERROR "${CMAKE_INSTALL_CMAKE} should not exist") +endif() |