summaryrefslogtreecommitdiffstats
path: root/Tests/CPackComponentsDEB/MyLibCPackConfig-components-description2.cmake.in
diff options
context:
space:
mode:
authorRaffi Enficiaud <raffi.enficiaud@mines-paris.org>2015-04-29 16:05:36 (GMT)
committerDomen Vrankar <domen.vrankar@gmail.com>2015-04-29 16:05:36 (GMT)
commit2f0afffabdabab1e6a6c067cdf2262437ff14842 (patch)
tree4da898fbb8c753345499573b21273c8d153926e0 /Tests/CPackComponentsDEB/MyLibCPackConfig-components-description2.cmake.in
parentd1a74bba1bba0c4381e7c3a6a93551320dc377ac (diff)
downloadCMake-2f0afffabdabab1e6a6c067cdf2262437ff14842.zip
CMake-2f0afffabdabab1e6a6c067cdf2262437ff14842.tar.gz
CMake-2f0afffabdabab1e6a6c067cdf2262437ff14842.tar.bz2
CPackDEB component description
Support for setting different description for each component.
Diffstat (limited to 'Tests/CPackComponentsDEB/MyLibCPackConfig-components-description2.cmake.in')
-rw-r--r--Tests/CPackComponentsDEB/MyLibCPackConfig-components-description2.cmake.in26
1 files changed, 26 insertions, 0 deletions
diff --git a/Tests/CPackComponentsDEB/MyLibCPackConfig-components-description2.cmake.in b/Tests/CPackComponentsDEB/MyLibCPackConfig-components-description2.cmake.in
new file mode 100644
index 0000000..cda79bc
--- /dev/null
+++ b/Tests/CPackComponentsDEB/MyLibCPackConfig-components-description2.cmake.in
@@ -0,0 +1,26 @@
+#
+# Activate component packaging
+#
+
+if(CPACK_GENERATOR MATCHES "DEB")
+ set(CPACK_DEB_COMPONENT_INSTALL "ON")
+endif()
+
+#
+# Choose grouping way
+#
+#set(CPACK_COMPONENTS_ALL_GROUPS_IN_ONE_PACKAGE)
+#set(CPACK_COMPONENTS_GROUPING)
+set(CPACK_COMPONENTS_IGNORE_GROUPS 1)
+#set(CPACK_COMPONENTS_ALL_IN_ONE_PACKAGE 1)
+
+# overriding previous descriptions
+set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "main description 2")
+
+# Components do not have any description
+unset(CPACK_COMPONENT_APPLICATIONS_DESCRIPTION)
+unset(CPACK_COMPONENT_HEADERS_DESCRIPTION)
+unset(CPACK_COMPONENT_LIBRARIES_DESCRIPTION)
+
+
+set(CPACK_COMPONENT_LIBRARIES_DESCRIPTION "library description")