Add a `CPACK_DEBIAN_ARCHIVE_TYPE` option that can be used to select an archive type that supports long file names. Closes: #14332
8 lines
187 B
CMake
8 lines
187 B
CMake
function(get_test_prerequirements found_var)
|
|
find_program(FAKEROOT_EXECUTABLE NAMES fakeroot)
|
|
|
|
if(FAKEROOT_EXECUTABLE)
|
|
set(${found_var} true PARENT_SCOPE)
|
|
endif()
|
|
endfunction()
|