Revision 9f72ac36440c6c83a35958037fff258259f4ba28 authored by Brad King on 03 June 2024, 17:32:21 UTC, committed by Brad King on 03 June 2024, 17:35:26 UTC
1 parent 713bca2
Raw File
MyLibCPackConfig-components-source.cmake.in
#
# 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")
back to top