diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-03-28 01:59:44 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-03-28 01:59:44 (GMT) |
commit | db68c543ff7ee0a59ec5fa463f59255193a9a479 (patch) | |
tree | e7311dabbedcdb504bf38a9b7fdb3a0ed8791ddc /Tests/SimpleInstallS2/CMakeLists.txt | |
parent | 451522381d510c02185ac8bfb75c3aa93b863fb4 (diff) | |
download | CMake-db68c543ff7ee0a59ec5fa463f59255193a9a479.zip CMake-db68c543ff7ee0a59ec5fa463f59255193a9a479.tar.gz CMake-db68c543ff7ee0a59ec5fa463f59255193a9a479.tar.bz2 |
ENH: Add pre and post install script support
Diffstat (limited to 'Tests/SimpleInstallS2/CMakeLists.txt')
-rw-r--r-- | Tests/SimpleInstallS2/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Tests/SimpleInstallS2/CMakeLists.txt b/Tests/SimpleInstallS2/CMakeLists.txt index ed46a0f..46689df 100644 --- a/Tests/SimpleInstallS2/CMakeLists.txt +++ b/Tests/SimpleInstallS2/CMakeLists.txt @@ -64,6 +64,10 @@ ELSE(STAGE2) INSTALL_TARGETS(/bin SimpleInstall) INSTALL_TARGETS(/lib test1 test2 test3) INSTALL_TARGETS(/include lib1.h lib2.h lib3.h) + SET_TARGET_PROPERTIES(SimpleInstall PROPERTIES PRE_INSTALL_SCRIPT + ${CMAKE_CURRENT_SOURCE_DIR}/PreInstall.cmake) + SET_TARGET_PROPERTIES(SimpleInstall PROPERTIES POST_INSTALL_SCRIPT + ${CMAKE_CURRENT_SOURCE_DIR}/PostInstall.cmake) ENDIF(STAGE2) ADD_CUSTOM_COMMAND( |