summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/CPack/STGZ/Prerequirements.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/RunCMake/CPack/STGZ/Prerequirements.cmake')
-rw-r--r--Tests/RunCMake/CPack/STGZ/Prerequirements.cmake11
1 files changed, 11 insertions, 0 deletions
diff --git a/Tests/RunCMake/CPack/STGZ/Prerequirements.cmake b/Tests/RunCMake/CPack/STGZ/Prerequirements.cmake
new file mode 100644
index 0000000..3b015ca
--- /dev/null
+++ b/Tests/RunCMake/CPack/STGZ/Prerequirements.cmake
@@ -0,0 +1,11 @@
+function(get_test_prerequirements found_var config_file)
+ if(EXISTS "/bin/sh")
+ #gunzip is not part of posix so we should not rely on it being installed
+ find_program(GUNZIP_EXECUTABLE gunzip)
+
+ if(GUNZIP_EXECUTABLE)
+ file(WRITE "${config_file}" "")
+ set(${found_var} true PARENT_SCOPE)
+ endif()
+ endif()
+endfunction()