summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/install/SkipInstallRulesWarning-check.cmake
diff options
context:
space:
mode:
authorNils Gladitz <nilsgladitz@gmail.com>2013-12-25 16:59:24 (GMT)
committerNils Gladitz <nilsgladitz@gmail.com>2014-01-08 15:28:14 (GMT)
commitbe0458c5620d611a772fd3a25312cf5ae6cb492c (patch)
treea026c5ba04bd2404ce29ae77b22485a865f92bd2 /Tests/RunCMake/install/SkipInstallRulesWarning-check.cmake
parentb87ce492ab4600091262593499095ea5db1ae0ca (diff)
downloadCMake-be0458c5620d611a772fd3a25312cf5ae6cb492c.zip
CMake-be0458c5620d611a772fd3a25312cf5ae6cb492c.tar.gz
CMake-be0458c5620d611a772fd3a25312cf5ae6cb492c.tar.bz2
InstallRules: added new variable to disable generation of install rules
The boolean variable CMAKE_SKIP_INSTALL_RULES allows disabling generation of install rules for projects which don't want them.
Diffstat (limited to 'Tests/RunCMake/install/SkipInstallRulesWarning-check.cmake')
-rw-r--r--Tests/RunCMake/install/SkipInstallRulesWarning-check.cmake9
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()