summaryrefslogtreecommitdiff
path: root/Tests/SimpleInstallS2/PackageScript.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/SimpleInstallS2/PackageScript.cmake')
-rw-r--r--Tests/SimpleInstallS2/PackageScript.cmake10
1 files changed, 10 insertions, 0 deletions
diff --git a/Tests/SimpleInstallS2/PackageScript.cmake b/Tests/SimpleInstallS2/PackageScript.cmake
new file mode 100644
index 000000000..3567a2f43
--- /dev/null
+++ b/Tests/SimpleInstallS2/PackageScript.cmake
@@ -0,0 +1,10 @@
+MESSAGE("This is packaging script")
+MESSAGE("It writes a file with all variables available in ${CMAKE_INSTALL_PREFIX}/AllVariables.txt")
+
+FILE(WRITE ${CMAKE_INSTALL_PREFIX}/AllVariables.txt "")
+GET_CMAKE_PROPERTY(res VARIABLES)
+FOREACH(var ${res})
+ FILE(APPEND ${CMAKE_INSTALL_PREFIX}/AllVariables.txt
+ "${var} \"${${var}}\"\n")
+ENDFOREACH(var ${res})
+