mirror of
https://github.com/reactos/CMake.git
synced 2025-02-02 01:55:03 +00:00
341cd93489
Test that changing compression of debian package content does not affect DEBIAN/ files which must be gzipped
12 lines
301 B
CMake
12 lines
301 B
CMake
#
|
|
# Test that setting the compression produces valid
|
|
# packages (compression does not leak to the DEBIAN/ files that use gzip)
|
|
#
|
|
|
|
if(CPACK_GENERATOR MATCHES "DEB")
|
|
set(CPACK_DEB_COMPONENT_INSTALL "OFF")
|
|
endif()
|
|
|
|
set(CPACK_COMPONENTS_ALL_GROUPS_IN_ONE_PACKAGE)
|
|
set(CPACK_DEBIAN_COMPRESSION_TYPE xz)
|