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.
27 lines
969 B
27 lines
969 B
set(CMAKE_BUILD_WITH_INSTALL_RPATH 1)
|
|
|
|
# default
|
|
file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/pre_install.sh"
|
|
"echo \"pre install\"\n")
|
|
file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/post_install.sh"
|
|
"echo \"post install\"\n")
|
|
file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/pre_uninstall.sh"
|
|
"echo \"pre uninstall\"\n")
|
|
file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/post_uninstall.sh"
|
|
"echo \"post uninstall\"\n")
|
|
|
|
# specific
|
|
file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/pre_install_foo.sh"
|
|
"echo \"pre install foo\"\n")
|
|
file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/post_install_foo.sh"
|
|
"echo \"post install foo\"\n")
|
|
file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/pre_uninstall_foo.sh"
|
|
"echo \"pre uninstall foo\"\n")
|
|
file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/post_uninstall_foo.sh"
|
|
"echo \"post uninstall foo\"\n")
|
|
|
|
install(FILES CMakeLists.txt DESTINATION foo COMPONENT foo)
|
|
install(FILES CMakeLists.txt DESTINATION bar COMPONENT bar)
|
|
|
|
set(CPACK_PACKAGE_NAME "install_scripts")
|