Clinton Stimpson e3f84fc504 cpack: Fix CPACK_PACKAGING_INSTALL_PREFIX handling for archives (#14677)
Fix the case when the archive generator is used to package components
with an install prefix.
2015-03-30 09:22:14 -04:00

14 lines
422 B
CMake

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_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)