The changes in commit 47b060ae (CPackDeb: allow empty directories in component packages, 2015-09-21), commit b58de9fe (CPack: allow packaging of empty directories, 2015-09-21), and commit b761e90d (CPack: remove accidental changes, 2015-09-22) regressed packaging of CMake itself. Revert the changes until they can be revised and rebased on other changes that make additional fixes.
11 lines
357 B
CMake
11 lines
357 B
CMake
cmake_minimum_required(VERSION 3.1 FATAL_ERROR)
|
|
|
|
include(RunCMake)
|
|
include("${RunCMake_SOURCE_DIR}/CPackTestHelpers.cmake")
|
|
|
|
# args: TEST_NAME "GENERATORS" RUN_CMAKE_BUILD_STEP
|
|
run_cpack_test(MINIMAL "RPM;DEB" false)
|
|
run_cpack_test(PARTIALLY_RELOCATABLE_WARNING "RPM" false)
|
|
run_cpack_test(DEB_EXTRA "DEB" false)
|
|
run_cpack_test(DEPENDENCIES "RPM;DEB" true)
|