You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
456 B
19 lines
456 B
14 years ago
|
#
|
||
|
# Activate component packaging
|
||
|
#
|
||
|
if(CPACK_GENERATOR MATCHES "ZIP")
|
||
|
set(CPACK_ARCHIVE_COMPONENT_INSTALL "ON")
|
||
|
endif(CPACK_GENERATOR MATCHES "ZIP")
|
||
|
|
||
|
if(CPACK_GENERATOR MATCHES "RPM")
|
||
|
set(CPACK_RPM_COMPONENT_INSTALL "ON")
|
||
|
endif(CPACK_GENERATOR MATCHES "RPM")
|
||
|
|
||
|
#
|
||
|
# Choose grouping way
|
||
|
#
|
||
|
#set(CPACK_COMPONENTS_ALL_GROUPS_IN_ONE_PACKAGE 1)
|
||
|
#set(CPACK_COMPONENTS_GROUPING)
|
||
|
#set(CPACK_COMPONENTS_IGNORE_GROUPS 1)
|
||
|
set(CPACK_COMPONENTS_ALL_IN_ONE_PACKAGE 1)
|