blob: 222cc5ae911c6c88cfd1e097556ba6fa38c88863 (
plain)
1
2
3
4
5
6
|
message("In post install")
if(PRE_INSTALL_DID_RUN)
message("Pre and post install work fine")
else(PRE_INSTALL_DID_RUN)
message(FATAL_ERROR "Pre install did not run before post install")
endif(PRE_INSTALL_DID_RUN)
|