summaryrefslogtreecommitdiff
path: root/Tests/CPackComponentsDEB/MyLibCPackConfig-components-source.cmake.in
blob: 352f10b994a33a7bf02f8672cbe28c3192081ff3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#
# 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")