You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
473 B

message("This is install script 2.")
if(INSTALL_SCRIPT_1_DID_RUN)
message("Install script ordering works.")
else()
message(FATAL_ERROR "Install script 1 did not run before install script 2.")
endif()
if(INSTALL_CODE_DID_RUN)
message("Install code ordering works.")
else()
message(FATAL_ERROR "Install script 2 did not run after install code.")
endif()
file(WRITE "${CMAKE_INSTALL_PREFIX}/MyTest/InstallScriptOut.cmake"
"set(CMAKE_INSTALL_SCRIPT_DID_RUN 1)\n"
)