https://github.com/Kitware/CMake
Raw File
Tip revision: e4a0d8f39987a4574336892106b39781fd2d4e50 authored by Brad King on 16 March 2018, 11:34:34 UTC
CMake 3.10.3
Tip revision: e4a0d8f
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