1# This file will be configured to contain variables for CPack. These variables 2# should be set in the CMake list file of the project before CPack module is 3# included. The list of available CPACK_xxx variables and their associated 4# documentation may be obtained using 5# cpack --help-variable-list 6# 7# Some variables are common to all generators (e.g. CPACK_PACKAGE_NAME) 8# and some are specific to a generator 9# (e.g. CPACK_NSIS_EXTRA_INSTALL_COMMANDS). The generator specific variables 10# usually begin with CPACK_<GENNAME>_xxxx. 11 12@_CPACK_OTHER_VARIABLES_@ 13 14if(NOT CPACK_PROPERTIES_FILE) 15 set(CPACK_PROPERTIES_FILE "@CMAKE_BINARY_DIR@/CPackProperties.cmake") 16endif() 17 18if(EXISTS ${CPACK_PROPERTIES_FILE}) 19 include(${CPACK_PROPERTIES_FILE}) 20endif() 21