https://github.com/Kitware/CMake
Raw File
Tip revision: 372de3f8039f69b3a2edcf7120083ec4097f8bd3 authored by Brad King on 27 June 2017, 14:59:58 UTC
CMake 3.9.0-rc5
Tip revision: 372de3f
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