34 lines
1010 B
CMake
34 lines
1010 B
CMake
|
#
|
||
|
# Activate component packaging
|
||
|
#
|
||
|
|
||
|
if(CPACK_GENERATOR MATCHES "DEB")
|
||
|
set(CPACK_DEB_COMPONENT_INSTALL "ON")
|
||
|
endif()
|
||
|
|
||
|
#
|
||
|
# Choose grouping way
|
||
|
#
|
||
|
set(CPACK_COMPONENTS_IGNORE_GROUPS 1)
|
||
|
|
||
|
# setting dependencies
|
||
|
set(CPACK_DEBIAN_PACKAGE_DEPENDS "depend-default")
|
||
|
set(CPACK_DEBIAN_HEADERS_PACKAGE_DEPENDS "depend-headers")
|
||
|
|
||
|
# this time we set shlibdeps to on
|
||
|
set(CPACK_DEBIAN_PACKAGE_SHLIBDEPS ON)
|
||
|
set(CPACK_DEBIAN_HEADERS_PACKAGE_SHLIBDEPS OFF)
|
||
|
set(CPACK_DEBIAN_LIBRARIES_PACKAGE_SHLIBDEPS OFF)
|
||
|
|
||
|
# we also set the dependencies of APPLICATION component to empty, and let
|
||
|
# shlibdeps do the job for this component. Otherwise the default will
|
||
|
# override
|
||
|
set(CPACK_DEBIAN_APPLICATIONS_PACKAGE_DEPENDS "")
|
||
|
|
||
|
# this sets the generated packages source to the desired one, in case
|
||
|
# several packages are generated from a unique source (the case with
|
||
|
# multicomponents packaging).
|
||
|
|
||
|
set(CPACK_DEBIAN_PACKAGE_SOURCE "test-source")
|
||
|
set(CPACK_DEBIAN_APPLICATIONS_PACKAGE_SOURCE "test-other-source")
|