https://github.com/Kitware/CMake
Raw File
Tip revision: ac925ec09e2dd4b373353d312e9e50b6165a66d0 authored by Brad King on 27 February 2018, 14:34:35 UTC
CMake 3.11.0-rc2
Tip revision: ac925ec
PackageScript.cmake
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()

back to top