7e940bf74a
New CPack/Deb tests and changes to old tests as package file names and inter component dependency detection was changed.
8 lines
184 B
CMake
8 lines
184 B
CMake
function(get_test_prerequirements found_var)
|
|
find_program(READELF_EXECUTABLE NAMES readelf)
|
|
|
|
if(READELF_EXECUTABLE)
|
|
set(${found_var} true PARENT_SCOPE)
|
|
endif()
|
|
endfunction()
|