cmake/Tests/CPackComponentsForAll/MyLibCPackConfig-IgnoreGroup.cmake.in

38 lines
1.0 KiB
CMake
Raw Normal View History

2011-02-19 15:09:36 +02:00
#
# Activate component packaging
#
if(CPACK_GENERATOR MATCHES "ZIP")
set(CPACK_ARCHIVE_COMPONENT_INSTALL "ON")
2013-03-16 19:13:01 +02:00
endif()
2011-02-19 15:09:36 +02:00
if(CPACK_GENERATOR MATCHES "RPM")
2015-04-27 22:25:09 +02:00
set(CPACK_RPM_COMPONENT_INSTALL "ON")
# test that /usr and /usr/foo get omitted in relocatable
# rpms as shortest relocation path is treated as base of
# package (/usr/foo/bar is relocatable and must exist)
set(CPACK_PACKAGING_INSTALL_PREFIX "/usr/foo/bar")
# test requires
set(CPACK_RPM_applications_PACKAGE_REQUIRES "mylib-libraries")
# test package summary override
set(CPACK_RPM_PACKAGE_SUMMARY "default summary")
set(CPACK_RPM_libraries_PACKAGE_SUMMARY "libraries summary")
# test package description override
set(CPACK_RPM_libraries_PACKAGE_DESCRIPTION "libraries description")
2013-03-16 19:13:01 +02:00
endif()
2011-02-19 15:09:36 +02:00
2011-06-19 15:41:06 +03:00
if(CPACK_GENERATOR MATCHES "DEB")
set(CPACK_DEB_COMPONENT_INSTALL "ON")
2013-03-16 19:13:01 +02:00
endif()
2011-06-19 15:41:06 +03:00
2011-02-19 15:09:36 +02:00
#
# Choose grouping way
#
#set(CPACK_COMPONENTS_ALL_GROUPS_IN_ONE_PACKAGE)
#set(CPACK_COMPONENTS_GROUPING)
set(CPACK_COMPONENTS_IGNORE_GROUPS 1)
2015-04-27 22:25:09 +02:00
#set(CPACK_COMPONENTS_ALL_IN_ONE_PACKAGE 1)