summaryrefslogtreecommitdiffstats
path: root/Tests/SimpleInstallS2/InstallScript2.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/SimpleInstallS2/InstallScript2.cmake')
-rw-r--r--Tests/SimpleInstallS2/InstallScript2.cmake8
1 files changed, 4 insertions, 4 deletions
diff --git a/Tests/SimpleInstallS2/InstallScript2.cmake b/Tests/SimpleInstallS2/InstallScript2.cmake
index a675df7..c1d20a3 100644
--- a/Tests/SimpleInstallS2/InstallScript2.cmake
+++ b/Tests/SimpleInstallS2/InstallScript2.cmake
@@ -1,14 +1,14 @@
message("This is install script 2.")
if(INSTALL_SCRIPT_1_DID_RUN)
message("Install script ordering works.")
-else(INSTALL_SCRIPT_1_DID_RUN)
+else()
message(FATAL_ERROR "Install script 1 did not run before install script 2.")
-endif(INSTALL_SCRIPT_1_DID_RUN)
+endif()
if(INSTALL_CODE_DID_RUN)
message("Install code ordering works.")
-else(INSTALL_CODE_DID_RUN)
+else()
message(FATAL_ERROR "Install script 2 did not run after install code.")
-endif(INSTALL_CODE_DID_RUN)
+endif()
file(WRITE "${CMAKE_INSTALL_PREFIX}/MyTest/InstallScriptOut.cmake"
"set(CMAKE_INSTALL_SCRIPT_DID_RUN 1)\n"
)