https://github.com/Kitware/CMake
Raw File
Tip revision: 0ecd9de6ddcaf951968d053ae491949d68d6175f authored by Brad King on 24 February 2021, 15:08:43 UTC
CMake 3.19.6
Tip revision: 0ecd9de
CMakeLists.txt
cmake_minimum_required(VERSION 3.2)
project(CPackComponentsPrefix NONE)

install(FILES file-runtime.txt
        DESTINATION bin COMPONENT Runtime)
install(FILES file-development.txt
        DESTINATION lib COMPONENT Development)

set(CPACK_PACKAGE_CONTACT "None") # mandatory for DEB generator
set(CPACK_COMPONENT_INCLUDE_TOPLEVEL_DIRECTORY 1)
set(CPACK_COMPONENTS_ALL Development)
set(CPACK_ARCHIVE_COMPONENT_INSTALL 1)
set(CPACK_PACKAGING_INSTALL_PREFIX "/opt/My-1.0")
include(CPack)
back to top