CPack.cmake 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653
  1. #.rst:
  2. # CPack
  3. # -----
  4. #
  5. # Build binary and source package installers.
  6. #
  7. # Variables common to all CPack generators
  8. # ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  9. #
  10. # The
  11. # CPack module generates binary and source installers in a variety of
  12. # formats using the cpack program. Inclusion of the CPack module adds
  13. # two new targets to the resulting makefiles, package and
  14. # package_source, which build the binary and source installers,
  15. # respectively. The generated binary installers contain everything
  16. # installed via CMake's INSTALL command (and the deprecated
  17. # INSTALL_FILES, INSTALL_PROGRAMS, and INSTALL_TARGETS commands).
  18. #
  19. # For certain kinds of binary installers (including the graphical
  20. # installers on Mac OS X and Windows), CPack generates installers that
  21. # allow users to select individual application components to install.
  22. # See CPackComponent module for that.
  23. #
  24. # The CPACK_GENERATOR variable has different meanings in different
  25. # contexts. In your CMakeLists.txt file, CPACK_GENERATOR is a *list of
  26. # generators*: when run with no other arguments, CPack will iterate over
  27. # that list and produce one package for each generator. In a
  28. # CPACK_PROJECT_CONFIG_FILE, though, CPACK_GENERATOR is a *string naming
  29. # a single generator*. If you need per-cpack- generator logic to
  30. # control *other* cpack settings, then you need a
  31. # CPACK_PROJECT_CONFIG_FILE.
  32. #
  33. # The CMake source tree itself contains a CPACK_PROJECT_CONFIG_FILE.
  34. # See the top level file CMakeCPackOptions.cmake.in for an example.
  35. #
  36. # If set, the CPACK_PROJECT_CONFIG_FILE is included automatically on a
  37. # per-generator basis. It only need contain overrides.
  38. #
  39. # Here's how it works:
  40. #
  41. # * cpack runs
  42. # * it includes CPackConfig.cmake
  43. # * it iterates over the generators listed in that file's
  44. # CPACK_GENERATOR list variable (unless told to use just a
  45. # specific one via -G on the command line...)
  46. # * foreach generator, it then
  47. #
  48. # - sets CPACK_GENERATOR to the one currently being iterated
  49. # - includes the CPACK_PROJECT_CONFIG_FILE
  50. # - produces the package for that generator
  51. #
  52. # This is the key: For each generator listed in CPACK_GENERATOR in
  53. # CPackConfig.cmake, cpack will *reset* CPACK_GENERATOR internally to
  54. # *the one currently being used* and then include the
  55. # CPACK_PROJECT_CONFIG_FILE.
  56. #
  57. # Before including this CPack module in your CMakeLists.txt file, there
  58. # are a variety of variables that can be set to customize the resulting
  59. # installers. The most commonly-used variables are:
  60. #
  61. # .. variable:: CPACK_PACKAGE_NAME
  62. #
  63. # The name of the package (or application). If not specified, defaults to
  64. # the project name.
  65. #
  66. # .. variable:: CPACK_PACKAGE_VENDOR
  67. #
  68. # The name of the package vendor. (e.g., "Kitware").
  69. #
  70. # .. variable:: CPACK_PACKAGE_DIRECTORY
  71. #
  72. # The directory in which CPack is doing its packaging. If it is not set
  73. # then this will default (internally) to the build dir. This variable may
  74. # be defined in CPack config file or from the cpack command line option
  75. # "-B". If set the command line option override the value found in the
  76. # config file.
  77. #
  78. # .. variable:: CPACK_PACKAGE_VERSION_MAJOR
  79. #
  80. # Package major Version
  81. #
  82. # .. variable:: CPACK_PACKAGE_VERSION_MINOR
  83. #
  84. # Package minor Version
  85. #
  86. # .. variable:: CPACK_PACKAGE_VERSION_PATCH
  87. #
  88. # Package patch Version
  89. #
  90. # .. variable:: CPACK_PACKAGE_DESCRIPTION_FILE
  91. #
  92. # A text file used to describe the project. Used, for example, the
  93. # introduction screen of a CPack-generated Windows installer to describe
  94. # the project.
  95. #
  96. # .. variable:: CPACK_PACKAGE_DESCRIPTION_SUMMARY
  97. #
  98. # Short description of the project (only a few words).
  99. #
  100. # .. variable:: CPACK_PACKAGE_FILE_NAME
  101. #
  102. # The name of the package file to generate, not including the
  103. # extension. For example, cmake-2.6.1-Linux-i686. The default value is::
  104. #
  105. # ${CPACK_PACKAGE_NAME}-${CPACK_PACKAGE_VERSION}-${CPACK_SYSTEM_NAME}.
  106. #
  107. # .. variable:: CPACK_PACKAGE_INSTALL_DIRECTORY
  108. #
  109. # Installation directory on the target system. This may be used by some
  110. # CPack generators like NSIS to create an installation directory e.g.,
  111. # "CMake 2.5" below the installation prefix. All installed element will be
  112. # put inside this directory.
  113. #
  114. # .. variable:: CPACK_PACKAGE_ICON
  115. #
  116. # A branding image that will be displayed inside the installer (used by GUI
  117. # installers).
  118. #
  119. # .. variable:: CPACK_PROJECT_CONFIG_FILE
  120. #
  121. # CPack-time project CPack configuration file. This file included at cpack
  122. # time, once per generator after CPack has set CPACK_GENERATOR to the
  123. # actual generator being used. It allows per-generator setting of CPACK_*
  124. # variables at cpack time.
  125. #
  126. # .. variable:: CPACK_RESOURCE_FILE_LICENSE
  127. #
  128. # License to be embedded in the installer. It will typically be displayed
  129. # to the user by the produced installer (often with an explicit "Accept"
  130. # button, for graphical installers) prior to installation. This license
  131. # file is NOT added to installed file but is used by some CPack generators
  132. # like NSIS. If you want to install a license file (may be the same as this
  133. # one) along with your project you must add an appropriate CMake INSTALL
  134. # command in your CMakeLists.txt.
  135. #
  136. # .. variable:: CPACK_RESOURCE_FILE_README
  137. #
  138. # ReadMe file to be embedded in the installer. It typically describes in
  139. # some detail the purpose of the project during the installation. Not all
  140. # CPack generators uses this file.
  141. #
  142. # .. variable:: CPACK_RESOURCE_FILE_WELCOME
  143. #
  144. # Welcome file to be embedded in the installer. It welcomes users to this
  145. # installer. Typically used in the graphical installers on Windows and Mac
  146. # OS X.
  147. #
  148. # .. variable:: CPACK_MONOLITHIC_INSTALL
  149. #
  150. # Disables the component-based installation mechanism. When set the
  151. # component specification is ignored and all installed items are put in a
  152. # single "MONOLITHIC" package. Some CPack generators do monolithic
  153. # packaging by default and may be asked to do component packaging by
  154. # setting CPACK_<GENNAME>_COMPONENT_INSTALL to 1/TRUE.
  155. #
  156. # .. variable:: CPACK_GENERATOR
  157. #
  158. # List of CPack generators to use. If not specified, CPack will create a
  159. # set of options CPACK_BINARY_<GENNAME> (e.g., CPACK_BINARY_NSIS) allowing
  160. # the user to enable/disable individual generators. This variable may be
  161. # used on the command line as well as in::
  162. #
  163. # cpack -D CPACK_GENERATOR="ZIP;TGZ" /path/to/build/tree
  164. #
  165. # .. variable:: CPACK_OUTPUT_CONFIG_FILE
  166. #
  167. # The name of the CPack binary configuration file. This file is the CPack
  168. # configuration generated by the CPack module for binary
  169. # installers. Defaults to CPackConfig.cmake.
  170. #
  171. # .. variable:: CPACK_PACKAGE_EXECUTABLES
  172. #
  173. # Lists each of the executables and associated text label to be used to
  174. # create Start Menu shortcuts. For example, setting this to the list
  175. # ccmake;CMake will create a shortcut named "CMake" that will execute the
  176. # installed executable ccmake. Not all CPack generators use it (at least
  177. # NSIS, WIX and OSXX11 do).
  178. #
  179. # .. variable:: CPACK_STRIP_FILES
  180. #
  181. # List of files to be stripped. Starting with CMake 2.6.0 CPACK_STRIP_FILES
  182. # will be a boolean variable which enables stripping of all files (a list
  183. # of files evaluates to TRUE in CMake, so this change is compatible).
  184. #
  185. # .. variable:: CPACK_VERBATIM_VARIABLES
  186. #
  187. # If set to TRUE, values of variables prefixed with CPACK_ will be escaped
  188. # before being written to the configuration files, so that the cpack program
  189. # receives them exactly as they were specified. If not, characters like quotes
  190. # and backslashes can cause parsing errors or alter the value received by the
  191. # cpack program. Defaults to FALSE for backwards compatibility.
  192. #
  193. # * Mandatory : NO
  194. # * Default : FALSE
  195. #
  196. # The following CPack variables are specific to source packages, and
  197. # will not affect binary packages:
  198. #
  199. # .. variable:: CPACK_SOURCE_PACKAGE_FILE_NAME
  200. #
  201. # The name of the source package. For example cmake-2.6.1.
  202. #
  203. # .. variable:: CPACK_SOURCE_STRIP_FILES
  204. #
  205. # List of files in the source tree that will be stripped. Starting with
  206. # CMake 2.6.0 CPACK_SOURCE_STRIP_FILES will be a boolean variable which
  207. # enables stripping of all files (a list of files evaluates to TRUE in
  208. # CMake, so this change is compatible).
  209. #
  210. # .. variable:: CPACK_SOURCE_GENERATOR
  211. #
  212. # List of generators used for the source packages. As with CPACK_GENERATOR,
  213. # if this is not specified then CPack will create a set of options (e.g.,
  214. # CPACK_SOURCE_ZIP) allowing users to select which packages will be
  215. # generated.
  216. #
  217. # .. variable:: CPACK_SOURCE_OUTPUT_CONFIG_FILE
  218. #
  219. # The name of the CPack source configuration file. This file is the CPack
  220. # configuration generated by the CPack module for source
  221. # installers. Defaults to CPackSourceConfig.cmake.
  222. #
  223. # .. variable:: CPACK_SOURCE_IGNORE_FILES
  224. #
  225. # Pattern of files in the source tree that won't be packaged when building
  226. # a source package. This is a list of regular expression patterns (that
  227. # must be properly escaped), e.g.,
  228. # /CVS/;/\\.svn/;\\.swp$;\\.#;/#;.*~;cscope.*
  229. #
  230. # The following variables are for advanced uses of CPack:
  231. #
  232. # .. variable:: CPACK_CMAKE_GENERATOR
  233. #
  234. # What CMake generator should be used if the project is CMake
  235. # project. Defaults to the value of CMAKE_GENERATOR few users will want to
  236. # change this setting.
  237. #
  238. # .. variable:: CPACK_INSTALL_CMAKE_PROJECTS
  239. #
  240. # List of four values that specify what project to install. The four values
  241. # are: Build directory, Project Name, Project Component, Directory. If
  242. # omitted, CPack will build an installer that installs everything.
  243. #
  244. # .. variable:: CPACK_SYSTEM_NAME
  245. #
  246. # System name, defaults to the value of ${CMAKE_SYSTEM_NAME}.
  247. #
  248. # .. variable:: CPACK_PACKAGE_VERSION
  249. #
  250. # Package full version, used internally. By default, this is built from
  251. # CPACK_PACKAGE_VERSION_MAJOR, CPACK_PACKAGE_VERSION_MINOR, and
  252. # CPACK_PACKAGE_VERSION_PATCH.
  253. #
  254. # .. variable:: CPACK_TOPLEVEL_TAG
  255. #
  256. # Directory for the installed files.
  257. #
  258. # .. variable:: CPACK_INSTALL_COMMANDS
  259. #
  260. # Extra commands to install components.
  261. #
  262. # .. variable:: CPACK_INSTALLED_DIRECTORIES
  263. #
  264. # Extra directories to install.
  265. #
  266. # .. variable:: CPACK_PACKAGE_INSTALL_REGISTRY_KEY
  267. #
  268. # Registry key used when installing this project. This is only used by
  269. # installer for Windows. The default value is based on the installation
  270. # directory.
  271. #
  272. # .. variable:: CPACK_CREATE_DESKTOP_LINKS
  273. #
  274. # List of desktop links to create.
  275. # Each desktop link requires a corresponding start menu shortcut
  276. # as created by :variable:`CPACK_PACKAGE_EXECUTABLES`.
  277. #=============================================================================
  278. # Copyright 2006-2009 Kitware, Inc.
  279. #
  280. # Distributed under the OSI-approved BSD License (the "License");
  281. # see accompanying file Copyright.txt for details.
  282. #
  283. # This software is distributed WITHOUT ANY WARRANTY; without even the
  284. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  285. # See the License for more information.
  286. #=============================================================================
  287. # (To distribute this file outside of CMake, substitute the full
  288. # License text for the above reference.)
  289. # Define this var in order to avoid (or warn) concerning multiple inclusion
  290. if(CPack_CMake_INCLUDED)
  291. message(WARNING "CPack.cmake has already been included!!")
  292. else()
  293. set(CPack_CMake_INCLUDED 1)
  294. endif()
  295. # Pick a configuration file
  296. set(cpack_input_file "${CMAKE_ROOT}/Templates/CPackConfig.cmake.in")
  297. if(EXISTS "${CMAKE_SOURCE_DIR}/CPackConfig.cmake.in")
  298. set(cpack_input_file "${CMAKE_SOURCE_DIR}/CPackConfig.cmake.in")
  299. endif()
  300. set(cpack_source_input_file "${CMAKE_ROOT}/Templates/CPackConfig.cmake.in")
  301. if(EXISTS "${CMAKE_SOURCE_DIR}/CPackSourceConfig.cmake.in")
  302. set(cpack_source_input_file "${CMAKE_SOURCE_DIR}/CPackSourceConfig.cmake.in")
  303. endif()
  304. # Backward compatibility
  305. # Include CPackComponent macros if it has not already been included before.
  306. include(CPackComponent)
  307. # Macro for setting values if a user did not overwrite them
  308. # Mangles CMake-special characters. Only kept for backwards compatibility.
  309. macro(cpack_set_if_not_set name value)
  310. message(DEPRECATION "cpack_set_if_not_set is obsolete; do not use.")
  311. _cpack_set_default("${name}" "${value}")
  312. endmacro()
  313. # cpack_encode_variables - Function to encode variables for the configuration file
  314. # find any variable that starts with CPACK and create a variable
  315. # _CPACK_OTHER_VARIABLES_ that contains SET commands for
  316. # each cpack variable. _CPACK_OTHER_VARIABLES_ is then
  317. # used as an @ replacment in configure_file for the CPackConfig.
  318. function(cpack_encode_variables)
  319. set(commands "")
  320. get_cmake_property(res VARIABLES)
  321. foreach(var ${res})
  322. if(var MATCHES "^CPACK")
  323. if(CPACK_VERBATIM_VARIABLES)
  324. _cpack_escape_for_cmake(value "${${var}}")
  325. else()
  326. set(value "${${var}}")
  327. endif()
  328. set(commands "${commands}\nSET(${var} \"${value}\")")
  329. endif()
  330. endforeach()
  331. set(_CPACK_OTHER_VARIABLES_ "${commands}" PARENT_SCOPE)
  332. endfunction()
  333. # Internal use functions
  334. function(_cpack_set_default name value)
  335. if(NOT DEFINED "${name}")
  336. set("${name}" "${value}" PARENT_SCOPE)
  337. endif()
  338. endfunction()
  339. function(_cpack_escape_for_cmake var value)
  340. string(REGEX REPLACE "([\\\$\"])" "\\\\\\1" escaped "${value}")
  341. set("${var}" "${escaped}" PARENT_SCOPE)
  342. endfunction()
  343. # Set the package name
  344. _cpack_set_default(CPACK_PACKAGE_NAME "${CMAKE_PROJECT_NAME}")
  345. _cpack_set_default(CPACK_PACKAGE_VERSION_MAJOR "0")
  346. _cpack_set_default(CPACK_PACKAGE_VERSION_MINOR "1")
  347. _cpack_set_default(CPACK_PACKAGE_VERSION_PATCH "1")
  348. _cpack_set_default(CPACK_PACKAGE_VERSION
  349. "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}")
  350. _cpack_set_default(CPACK_PACKAGE_VENDOR "Humanity")
  351. _cpack_set_default(CPACK_PACKAGE_DESCRIPTION_SUMMARY
  352. "${CMAKE_PROJECT_NAME} built using CMake")
  353. _cpack_set_default(CPACK_PACKAGE_DESCRIPTION_FILE
  354. "${CMAKE_ROOT}/Templates/CPack.GenericDescription.txt")
  355. _cpack_set_default(CPACK_RESOURCE_FILE_LICENSE
  356. "${CMAKE_ROOT}/Templates/CPack.GenericLicense.txt")
  357. _cpack_set_default(CPACK_RESOURCE_FILE_README
  358. "${CMAKE_ROOT}/Templates/CPack.GenericDescription.txt")
  359. _cpack_set_default(CPACK_RESOURCE_FILE_WELCOME
  360. "${CMAKE_ROOT}/Templates/CPack.GenericWelcome.txt")
  361. _cpack_set_default(CPACK_MODULE_PATH "${CMAKE_MODULE_PATH}")
  362. if(CPACK_NSIS_ENABLE_UNINSTALL_BEFORE_INSTALL)
  363. set(CPACK_NSIS_ENABLE_UNINSTALL_BEFORE_INSTALL ON)
  364. endif()
  365. if(CPACK_NSIS_MODIFY_PATH)
  366. set(CPACK_NSIS_MODIFY_PATH ON)
  367. endif()
  368. set(__cpack_system_name ${CMAKE_SYSTEM_NAME})
  369. if(__cpack_system_name MATCHES "Windows")
  370. if(CMAKE_SIZEOF_VOID_P EQUAL 8)
  371. set(__cpack_system_name win64)
  372. else()
  373. set(__cpack_system_name win32)
  374. endif()
  375. endif()
  376. _cpack_set_default(CPACK_SYSTEM_NAME "${__cpack_system_name}")
  377. # Root dir: default value should be the string literal "$PROGRAMFILES"
  378. # for backwards compatibility. Projects may set this value to anything.
  379. # When creating 64 bit binaries we set the default value to "$PROGRAMFILES64"
  380. if("x${__cpack_system_name}" STREQUAL "xwin64")
  381. set(__cpack_root_default "$PROGRAMFILES64")
  382. else()
  383. set(__cpack_root_default "$PROGRAMFILES")
  384. endif()
  385. _cpack_set_default(CPACK_NSIS_INSTALL_ROOT "${__cpack_root_default}")
  386. # <project>-<major>.<minor>.<patch>-<release>-<platform>.<pkgtype>
  387. _cpack_set_default(CPACK_PACKAGE_FILE_NAME
  388. "${CPACK_PACKAGE_NAME}-${CPACK_PACKAGE_VERSION}-${CPACK_SYSTEM_NAME}")
  389. _cpack_set_default(CPACK_PACKAGE_INSTALL_DIRECTORY
  390. "${CPACK_PACKAGE_NAME} ${CPACK_PACKAGE_VERSION}")
  391. _cpack_set_default(CPACK_PACKAGE_INSTALL_REGISTRY_KEY
  392. "${CPACK_PACKAGE_INSTALL_DIRECTORY}")
  393. _cpack_set_default(CPACK_PACKAGE_DEFAULT_LOCATION "/")
  394. _cpack_set_default(CPACK_PACKAGE_RELOCATABLE "true")
  395. # always force to exactly "true" or "false" for CPack.Info.plist.in:
  396. if(CPACK_PACKAGE_RELOCATABLE)
  397. set(CPACK_PACKAGE_RELOCATABLE "true")
  398. else()
  399. set(CPACK_PACKAGE_RELOCATABLE "false")
  400. endif()
  401. macro(cpack_check_file_exists file description)
  402. if(NOT EXISTS "${file}")
  403. message(SEND_ERROR "CPack ${description} file: \"${file}\" could not be found.")
  404. endif()
  405. endmacro()
  406. cpack_check_file_exists("${CPACK_PACKAGE_DESCRIPTION_FILE}" "package description")
  407. cpack_check_file_exists("${CPACK_RESOURCE_FILE_LICENSE}" "license resource")
  408. cpack_check_file_exists("${CPACK_RESOURCE_FILE_README}" "readme resource")
  409. cpack_check_file_exists("${CPACK_RESOURCE_FILE_WELCOME}" "welcome resource")
  410. macro(cpack_optional_append _list _cond _item)
  411. if(${_cond})
  412. set(${_list} ${${_list}} ${_item})
  413. endif()
  414. endmacro()
  415. #.rst:
  416. # .. variable:: CPACK_BINARY_<GENNAME>
  417. #
  418. # CPack generated options for binary generators. The CPack.cmake module
  419. # generates (when CPACK_GENERATOR is not set) a set of CMake options (see
  420. # CMake option command) which may then be used to select the CPack
  421. # generator(s) to be used when launching the package target.
  422. #
  423. # Provide options to choose generators we might check here if the required
  424. # tools for the generates exist and set the defaults according to the results
  425. if(NOT CPACK_GENERATOR)
  426. if(UNIX)
  427. if(CYGWIN)
  428. option(CPACK_BINARY_CYGWIN "Enable to build Cygwin binary packages" ON)
  429. else()
  430. if(APPLE)
  431. option(CPACK_BINARY_BUNDLE "Enable to build OSX bundles" OFF)
  432. option(CPACK_BINARY_DRAGNDROP "Enable to build OSX Drag And Drop package" OFF)
  433. option(CPACK_BINARY_OSXX11 "Enable to build OSX X11 packages" OFF)
  434. option(CPACK_BINARY_PACKAGEMAKER "Enable to build PackageMaker packages" OFF)
  435. else()
  436. option(CPACK_BINARY_TZ "Enable to build TZ packages" ON)
  437. endif()
  438. option(CPACK_BINARY_DEB "Enable to build Debian packages" OFF)
  439. option(CPACK_BINARY_NSIS "Enable to build NSIS packages" OFF)
  440. option(CPACK_BINARY_RPM "Enable to build RPM packages" OFF)
  441. option(CPACK_BINARY_STGZ "Enable to build STGZ packages" ON)
  442. option(CPACK_BINARY_TBZ2 "Enable to build TBZ2 packages" OFF)
  443. option(CPACK_BINARY_TGZ "Enable to build TGZ packages" ON)
  444. option(CPACK_BINARY_TXZ "Enable to build TXZ packages" OFF)
  445. endif()
  446. else()
  447. option(CPACK_BINARY_7Z "Enable to build 7-Zip packages" OFF)
  448. option(CPACK_BINARY_NSIS "Enable to build NSIS packages" ON)
  449. option(CPACK_BINARY_WIX "Enable to build WiX packages" OFF)
  450. option(CPACK_BINARY_ZIP "Enable to build ZIP packages" OFF)
  451. endif()
  452. option(CPACK_BINARY_IFW "Enable to build IFW packages" OFF)
  453. cpack_optional_append(CPACK_GENERATOR CPACK_BINARY_7Z 7Z)
  454. cpack_optional_append(CPACK_GENERATOR CPACK_BINARY_BUNDLE Bundle)
  455. cpack_optional_append(CPACK_GENERATOR CPACK_BINARY_CYGWIN CygwinBinary)
  456. cpack_optional_append(CPACK_GENERATOR CPACK_BINARY_DEB DEB)
  457. cpack_optional_append(CPACK_GENERATOR CPACK_BINARY_DRAGNDROP DragNDrop)
  458. cpack_optional_append(CPACK_GENERATOR CPACK_BINARY_IFW IFW)
  459. cpack_optional_append(CPACK_GENERATOR CPACK_BINARY_NSIS NSIS)
  460. cpack_optional_append(CPACK_GENERATOR CPACK_BINARY_OSXX11 OSXX11)
  461. cpack_optional_append(CPACK_GENERATOR CPACK_BINARY_PACKAGEMAKER PackageMaker)
  462. cpack_optional_append(CPACK_GENERATOR CPACK_BINARY_RPM RPM)
  463. cpack_optional_append(CPACK_GENERATOR CPACK_BINARY_STGZ STGZ)
  464. cpack_optional_append(CPACK_GENERATOR CPACK_BINARY_TBZ2 TBZ2)
  465. cpack_optional_append(CPACK_GENERATOR CPACK_BINARY_TGZ TGZ)
  466. cpack_optional_append(CPACK_GENERATOR CPACK_BINARY_TXZ TXZ)
  467. cpack_optional_append(CPACK_GENERATOR CPACK_BINARY_TZ TZ)
  468. cpack_optional_append(CPACK_GENERATOR CPACK_BINARY_WIX WIX)
  469. cpack_optional_append(CPACK_GENERATOR CPACK_BINARY_ZIP ZIP)
  470. endif()
  471. # Provide options to choose source generators
  472. if(NOT CPACK_SOURCE_GENERATOR)
  473. if(UNIX)
  474. if(CYGWIN)
  475. option(CPACK_SOURCE_CYGWIN "Enable to build Cygwin source packages" ON)
  476. else()
  477. option(CPACK_SOURCE_TBZ2 "Enable to build TBZ2 source packages" ON)
  478. option(CPACK_SOURCE_TGZ "Enable to build TGZ source packages" ON)
  479. option(CPACK_SOURCE_TXZ "Enable to build TXZ source packages" ON)
  480. option(CPACK_SOURCE_TZ "Enable to build TZ source packages" ON)
  481. option(CPACK_SOURCE_ZIP "Enable to build ZIP source packages" OFF)
  482. endif()
  483. else()
  484. option(CPACK_SOURCE_7Z "Enable to build 7-Zip source packages" ON)
  485. option(CPACK_SOURCE_ZIP "Enable to build ZIP source packages" ON)
  486. endif()
  487. cpack_optional_append(CPACK_SOURCE_GENERATOR CPACK_SOURCE_7Z 7Z)
  488. cpack_optional_append(CPACK_SOURCE_GENERATOR CPACK_SOURCE_CYGWIN CygwinSource)
  489. cpack_optional_append(CPACK_SOURCE_GENERATOR CPACK_SOURCE_TBZ2 TBZ2)
  490. cpack_optional_append(CPACK_SOURCE_GENERATOR CPACK_SOURCE_TGZ TGZ)
  491. cpack_optional_append(CPACK_SOURCE_GENERATOR CPACK_SOURCE_TXZ TXZ)
  492. cpack_optional_append(CPACK_SOURCE_GENERATOR CPACK_SOURCE_TZ TZ)
  493. cpack_optional_append(CPACK_SOURCE_GENERATOR CPACK_SOURCE_ZIP ZIP)
  494. endif()
  495. # mark the above options as advanced
  496. mark_as_advanced(
  497. CPACK_BINARY_7Z
  498. CPACK_BINARY_BUNDLE
  499. CPACK_BINARY_CYGWIN
  500. CPACK_BINARY_DEB
  501. CPACK_BINARY_DRAGNDROP
  502. CPACK_BINARY_IFW
  503. CPACK_BINARY_NSIS
  504. CPACK_BINARY_OSXX11
  505. CPACK_BINARY_PACKAGEMAKER
  506. CPACK_BINARY_RPM
  507. CPACK_BINARY_STGZ
  508. CPACK_BINARY_TBZ2
  509. CPACK_BINARY_TGZ
  510. CPACK_BINARY_TXZ
  511. CPACK_BINARY_TZ
  512. CPACK_BINARY_WIX
  513. CPACK_BINARY_ZIP
  514. CPACK_SOURCE_7Z
  515. CPACK_SOURCE_CYGWIN
  516. CPACK_SOURCE_TBZ2
  517. CPACK_SOURCE_TGZ
  518. CPACK_SOURCE_TXZ
  519. CPACK_SOURCE_TZ
  520. CPACK_SOURCE_ZIP
  521. )
  522. # Set some other variables
  523. _cpack_set_default(CPACK_INSTALL_CMAKE_PROJECTS
  524. "${CMAKE_BINARY_DIR};${CMAKE_PROJECT_NAME};ALL;/")
  525. _cpack_set_default(CPACK_CMAKE_GENERATOR "${CMAKE_GENERATOR}")
  526. _cpack_set_default(CPACK_TOPLEVEL_TAG "${CPACK_SYSTEM_NAME}")
  527. # if the user has set CPACK_NSIS_DISPLAY_NAME remember it
  528. if(DEFINED CPACK_NSIS_DISPLAY_NAME)
  529. set(CPACK_NSIS_DISPLAY_NAME_SET TRUE)
  530. endif()
  531. # if the user has set CPACK_NSIS_DISPLAY
  532. # explicitly, then use that as the default
  533. # value of CPACK_NSIS_PACKAGE_NAME instead
  534. # of CPACK_PACKAGE_INSTALL_DIRECTORY
  535. _cpack_set_default(CPACK_NSIS_DISPLAY_NAME "${CPACK_PACKAGE_INSTALL_DIRECTORY}")
  536. if(CPACK_NSIS_DISPLAY_NAME_SET)
  537. _cpack_set_default(CPACK_NSIS_PACKAGE_NAME "${CPACK_NSIS_DISPLAY_NAME}")
  538. else()
  539. _cpack_set_default(CPACK_NSIS_PACKAGE_NAME "${CPACK_PACKAGE_INSTALL_DIRECTORY}")
  540. endif()
  541. _cpack_set_default(CPACK_OUTPUT_CONFIG_FILE
  542. "${CMAKE_BINARY_DIR}/CPackConfig.cmake")
  543. _cpack_set_default(CPACK_SOURCE_OUTPUT_CONFIG_FILE
  544. "${CMAKE_BINARY_DIR}/CPackSourceConfig.cmake")
  545. _cpack_set_default(CPACK_SET_DESTDIR OFF)
  546. _cpack_set_default(CPACK_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
  547. _cpack_set_default(CPACK_NSIS_INSTALLER_ICON_CODE "")
  548. _cpack_set_default(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "")
  549. # WiX specific variables
  550. _cpack_set_default(CPACK_WIX_SIZEOF_VOID_P "${CMAKE_SIZEOF_VOID_P}")
  551. # set sysroot so SDK tools can be used
  552. if(CMAKE_OSX_SYSROOT)
  553. _cpack_set_default(CPACK_OSX_SYSROOT "${_CMAKE_OSX_SYSROOT_PATH}")
  554. endif()
  555. if(DEFINED CPACK_COMPONENTS_ALL)
  556. if(CPACK_MONOLITHIC_INSTALL)
  557. message("CPack warning: both CPACK_COMPONENTS_ALL and CPACK_MONOLITHIC_INSTALL have been set.\nDefaulting to a monolithic installation.")
  558. set(CPACK_COMPONENTS_ALL)
  559. else()
  560. # The user has provided the set of components to be installed as
  561. # part of a component-based installation; trust her.
  562. set(CPACK_COMPONENTS_ALL_SET_BY_USER TRUE)
  563. endif()
  564. else()
  565. # If the user has not specifically requested a monolithic installer
  566. # but has specified components in various "install" commands, tell
  567. # CPack about those components.
  568. if(NOT CPACK_MONOLITHIC_INSTALL)
  569. get_cmake_property(CPACK_COMPONENTS_ALL COMPONENTS)
  570. list(LENGTH CPACK_COMPONENTS_ALL CPACK_COMPONENTS_LEN)
  571. if(CPACK_COMPONENTS_LEN EQUAL 1)
  572. # Only one component: this is not a component-based installation
  573. # (at least, it isn't a component-based installation, but may
  574. # become one later if the user uses the cpack_add_* commands).
  575. set(CPACK_COMPONENTS_ALL)
  576. endif()
  577. set(CPACK_COMPONENTS_LEN)
  578. endif()
  579. endif()
  580. # CMake always generates a component named "Unspecified", which is
  581. # used to install everything that doesn't have an explicitly-provided
  582. # component. Since these files should always be installed, we'll make
  583. # them hidden and required.
  584. set(CPACK_COMPONENT_UNSPECIFIED_HIDDEN TRUE)
  585. set(CPACK_COMPONENT_UNSPECIFIED_REQUIRED TRUE)
  586. cpack_encode_variables()
  587. configure_file("${cpack_input_file}" "${CPACK_OUTPUT_CONFIG_FILE}" @ONLY)
  588. # Generate source file
  589. _cpack_set_default(CPACK_SOURCE_INSTALLED_DIRECTORIES
  590. "${CMAKE_SOURCE_DIR};/")
  591. _cpack_set_default(CPACK_SOURCE_TOPLEVEL_TAG "${CPACK_SYSTEM_NAME}-Source")
  592. _cpack_set_default(CPACK_SOURCE_PACKAGE_FILE_NAME
  593. "${CPACK_PACKAGE_NAME}-${CPACK_PACKAGE_VERSION}-Source")
  594. set(__cpack_source_ignore_files_default
  595. "/CVS/;/\\.svn/;/\\.bzr/;/\\.hg/;/\\.git/;\\.swp$;\\.#;/#")
  596. if(NOT CPACK_VERBATIM_VARIABLES)
  597. _cpack_escape_for_cmake(__cpack_source_ignore_files_default
  598. "${__cpack_source_ignore_files_default}")
  599. endif()
  600. _cpack_set_default(CPACK_SOURCE_IGNORE_FILES "${__cpack_source_ignore_files_default}")
  601. set(CPACK_INSTALL_CMAKE_PROJECTS "${CPACK_SOURCE_INSTALL_CMAKE_PROJECTS}")
  602. set(CPACK_INSTALLED_DIRECTORIES "${CPACK_SOURCE_INSTALLED_DIRECTORIES}")
  603. set(CPACK_GENERATOR "${CPACK_SOURCE_GENERATOR}")
  604. set(CPACK_TOPLEVEL_TAG "${CPACK_SOURCE_TOPLEVEL_TAG}")
  605. set(CPACK_PACKAGE_FILE_NAME "${CPACK_SOURCE_PACKAGE_FILE_NAME}")
  606. set(CPACK_IGNORE_FILES "${CPACK_SOURCE_IGNORE_FILES}")
  607. set(CPACK_STRIP_FILES "${CPACK_SOURCE_STRIP_FILES}")
  608. cpack_encode_variables()
  609. configure_file("${cpack_source_input_file}"
  610. "${CPACK_SOURCE_OUTPUT_CONFIG_FILE}" @ONLY)