CPackComponent.cmake 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539
  1. #.rst:
  2. # CPackComponent
  3. # --------------
  4. #
  5. # Build binary and source package installers
  6. #
  7. # Variables concerning CPack Components
  8. # ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  9. #
  10. # The CPackComponent module is the module which handles the component
  11. # part of CPack. See CPack module for general information about CPack.
  12. #
  13. # For certain kinds of binary installers (including the graphical
  14. # installers on Mac OS X and Windows), CPack generates installers that
  15. # allow users to select individual application components to install.
  16. # The contents of each of the components are identified by the COMPONENT
  17. # argument of CMake's INSTALL command. These components can be
  18. # annotated with user-friendly names and descriptions, inter-component
  19. # dependencies, etc., and grouped in various ways to customize the
  20. # resulting installer. See the cpack_add_* commands, described below,
  21. # for more information about component-specific installations.
  22. #
  23. # Component-specific installation allows users to select specific sets
  24. # of components to install during the install process. Installation
  25. # components are identified by the COMPONENT argument of CMake's INSTALL
  26. # commands, and should be further described by the following CPack
  27. # commands:
  28. #
  29. # .. variable:: CPACK_COMPONENTS_ALL
  30. #
  31. # The list of component to install.
  32. #
  33. # The default value of this variable is computed by CPack and contains all
  34. # components defined by the project. The user may set it to only include the
  35. # specified components.
  36. #
  37. # .. variable:: CPACK_<GENNAME>_COMPONENT_INSTALL
  38. #
  39. # Enable/Disable component install for CPack generator <GENNAME>.
  40. #
  41. # Each CPack Generator (RPM, DEB, ARCHIVE, NSIS, DMG, etc...) has a legacy
  42. # default behavior. e.g. RPM builds monolithic whereas NSIS builds
  43. # component. One can change the default behavior by setting this variable to
  44. # 0/1 or OFF/ON.
  45. #
  46. # .. variable:: CPACK_COMPONENTS_GROUPING
  47. #
  48. # Specify how components are grouped for multi-package component-aware CPack
  49. # generators.
  50. #
  51. # Some generators like RPM or ARCHIVE family (TGZ, ZIP, ...) generates
  52. # several packages files when asked for component packaging. They group
  53. # the component differently depending on the value of this variable:
  54. #
  55. # * ONE_PER_GROUP (default): creates one package file per component group
  56. # * ALL_COMPONENTS_IN_ONE : creates a single package with all (requested) component
  57. # * IGNORE : creates one package per component, i.e. IGNORE component group
  58. #
  59. # One can specify different grouping for different CPack generator by
  60. # using a CPACK_PROJECT_CONFIG_FILE.
  61. #
  62. # .. variable:: CPACK_COMPONENT_<compName>_DISPLAY_NAME
  63. #
  64. # The name to be displayed for a component.
  65. #
  66. # .. variable:: CPACK_COMPONENT_<compName>_DESCRIPTION
  67. #
  68. # The description of a component.
  69. #
  70. # .. variable:: CPACK_COMPONENT_<compName>_GROUP
  71. #
  72. # The group of a component.
  73. #
  74. # .. variable:: CPACK_COMPONENT_<compName>_DEPENDS
  75. #
  76. # The dependencies (list of components) on which this component depends.
  77. #
  78. # .. variable:: CPACK_COMPONENT_<compName>_REQUIRED
  79. #
  80. # True is this component is required.
  81. #
  82. # .. command:: cpack_add_component
  83. #
  84. # Describes a CPack installation
  85. # component named by the COMPONENT argument to a CMake INSTALL command.
  86. #
  87. # ::
  88. #
  89. # cpack_add_component(compname
  90. # [DISPLAY_NAME name]
  91. # [DESCRIPTION description]
  92. # [HIDDEN | REQUIRED | DISABLED ]
  93. # [GROUP group]
  94. # [DEPENDS comp1 comp2 ... ]
  95. # [INSTALL_TYPES type1 type2 ... ]
  96. # [DOWNLOADED]
  97. # [ARCHIVE_FILE filename])
  98. #
  99. #
  100. #
  101. # The cmake_add_component command describes an installation component,
  102. # which the user can opt to install or remove as part of the graphical
  103. # installation process. compname is the name of the component, as
  104. # provided to the COMPONENT argument of one or more CMake INSTALL
  105. # commands.
  106. #
  107. # DISPLAY_NAME is the displayed name of the component, used in graphical
  108. # installers to display the component name. This value can be any
  109. # string.
  110. #
  111. # DESCRIPTION is an extended description of the component, used in
  112. # graphical installers to give the user additional information about the
  113. # component. Descriptions can span multiple lines using ``\n`` as the
  114. # line separator. Typically, these descriptions should be no more than
  115. # a few lines long.
  116. #
  117. # HIDDEN indicates that this component will be hidden in the graphical
  118. # installer, so that the user cannot directly change whether it is
  119. # installed or not.
  120. #
  121. # REQUIRED indicates that this component is required, and therefore will
  122. # always be installed. It will be visible in the graphical installer,
  123. # but it cannot be unselected. (Typically, required components are
  124. # shown greyed out).
  125. #
  126. # DISABLED indicates that this component should be disabled (unselected)
  127. # by default. The user is free to select this component for
  128. # installation, unless it is also HIDDEN.
  129. #
  130. # DEPENDS lists the components on which this component depends. If this
  131. # component is selected, then each of the components listed must also be
  132. # selected. The dependency information is encoded within the installer
  133. # itself, so that users cannot install inconsistent sets of components.
  134. #
  135. # GROUP names the component group of which this component is a part. If
  136. # not provided, the component will be a standalone component, not part
  137. # of any component group. Component groups are described with the
  138. # cpack_add_component_group command, detailed below.
  139. #
  140. # INSTALL_TYPES lists the installation types of which this component is
  141. # a part. When one of these installations types is selected, this
  142. # component will automatically be selected. Installation types are
  143. # described with the cpack_add_install_type command, detailed below.
  144. #
  145. # DOWNLOADED indicates that this component should be downloaded
  146. # on-the-fly by the installer, rather than packaged in with the
  147. # installer itself. For more information, see the
  148. # cpack_configure_downloads command.
  149. #
  150. # ARCHIVE_FILE provides a name for the archive file created by CPack to
  151. # be used for downloaded components. If not supplied, CPack will create
  152. # a file with some name based on CPACK_PACKAGE_FILE_NAME and the name of
  153. # the component. See cpack_configure_downloads for more information.
  154. #
  155. # .. command:: cpack_add_component_group
  156. #
  157. # Describes a group of related CPack installation components.
  158. #
  159. # ::
  160. #
  161. # cpack_add_component_group(groupname
  162. # [DISPLAY_NAME name]
  163. # [DESCRIPTION description]
  164. # [PARENT_GROUP parent]
  165. # [EXPANDED]
  166. # [BOLD_TITLE])
  167. #
  168. #
  169. #
  170. # The cpack_add_component_group describes a group of installation
  171. # components, which will be placed together within the listing of
  172. # options. Typically, component groups allow the user to
  173. # select/deselect all of the components within a single group via a
  174. # single group-level option. Use component groups to reduce the
  175. # complexity of installers with many options. groupname is an arbitrary
  176. # name used to identify the group in the GROUP argument of the
  177. # cpack_add_component command, which is used to place a component in a
  178. # group. The name of the group must not conflict with the name of any
  179. # component.
  180. #
  181. # DISPLAY_NAME is the displayed name of the component group, used in
  182. # graphical installers to display the component group name. This value
  183. # can be any string.
  184. #
  185. # DESCRIPTION is an extended description of the component group, used in
  186. # graphical installers to give the user additional information about the
  187. # components within that group. Descriptions can span multiple lines
  188. # using ``\n`` as the line separator. Typically, these descriptions
  189. # should be no more than a few lines long.
  190. #
  191. # PARENT_GROUP, if supplied, names the parent group of this group.
  192. # Parent groups are used to establish a hierarchy of groups, providing
  193. # an arbitrary hierarchy of groups.
  194. #
  195. # EXPANDED indicates that, by default, the group should show up as
  196. # "expanded", so that the user immediately sees all of the components
  197. # within the group. Otherwise, the group will initially show up as a
  198. # single entry.
  199. #
  200. # BOLD_TITLE indicates that the group title should appear in bold, to
  201. # call the user's attention to the group.
  202. #
  203. # .. command:: cpack_add_install_type
  204. #
  205. # Add a new installation type containing
  206. # a set of predefined component selections to the graphical installer.
  207. #
  208. # ::
  209. #
  210. # cpack_add_install_type(typename
  211. # [DISPLAY_NAME name])
  212. #
  213. #
  214. #
  215. # The cpack_add_install_type command identifies a set of preselected
  216. # components that represents a common use case for an application. For
  217. # example, a "Developer" install type might include an application along
  218. # with its header and library files, while an "End user" install type
  219. # might just include the application's executable. Each component
  220. # identifies itself with one or more install types via the INSTALL_TYPES
  221. # argument to cpack_add_component.
  222. #
  223. # DISPLAY_NAME is the displayed name of the install type, which will
  224. # typically show up in a drop-down box within a graphical installer.
  225. # This value can be any string.
  226. #
  227. # .. command:: cpack_configure_downloads
  228. #
  229. # Configure CPack to download
  230. # selected components on-the-fly as part of the installation process.
  231. #
  232. # ::
  233. #
  234. # cpack_configure_downloads(site
  235. # [UPLOAD_DIRECTORY dirname]
  236. # [ALL]
  237. # [ADD_REMOVE|NO_ADD_REMOVE])
  238. #
  239. #
  240. #
  241. # The cpack_configure_downloads command configures installation-time
  242. # downloads of selected components. For each downloadable component,
  243. # CPack will create an archive containing the contents of that
  244. # component, which should be uploaded to the given site. When the user
  245. # selects that component for installation, the installer will download
  246. # and extract the component in place. This feature is useful for
  247. # creating small installers that only download the requested components,
  248. # saving bandwidth. Additionally, the installers are small enough that
  249. # they will be installed as part of the normal installation process, and
  250. # the "Change" button in Windows Add/Remove Programs control panel will
  251. # allow one to add or remove parts of the application after the original
  252. # installation. On Windows, the downloaded-components functionality
  253. # requires the ZipDLL plug-in for NSIS, available at:
  254. #
  255. # ::
  256. #
  257. # http://nsis.sourceforge.net/ZipDLL_plug-in
  258. #
  259. #
  260. #
  261. # On Mac OS X, installers that download components on-the-fly can only
  262. # be built and installed on system using Mac OS X 10.5 or later.
  263. #
  264. # The site argument is a URL where the archives for downloadable
  265. # components will reside, e.g.,
  266. # https://cmake.org/files/2.6.1/installer/ All of the archives
  267. # produced by CPack should be uploaded to that location.
  268. #
  269. # UPLOAD_DIRECTORY is the local directory where CPack will create the
  270. # various archives for each of the components. The contents of this
  271. # directory should be uploaded to a location accessible by the URL given
  272. # in the site argument. If omitted, CPack will use the directory
  273. # CPackUploads inside the CMake binary directory to store the generated
  274. # archives.
  275. #
  276. # The ALL flag indicates that all components be downloaded. Otherwise,
  277. # only those components explicitly marked as DOWNLOADED or that have a
  278. # specified ARCHIVE_FILE will be downloaded. Additionally, the ALL
  279. # option implies ADD_REMOVE (unless NO_ADD_REMOVE is specified).
  280. #
  281. # ADD_REMOVE indicates that CPack should install a copy of the installer
  282. # that can be called from Windows' Add/Remove Programs dialog (via the
  283. # "Modify" button) to change the set of installed components.
  284. # NO_ADD_REMOVE turns off this behavior. This option is ignored on Mac
  285. # OS X.
  286. #=============================================================================
  287. # Copyright 2006-2009 Kitware, Inc.
  288. #
  289. # Distributed under the OSI-approved BSD License (the "License");
  290. # see accompanying file Copyright.txt for details.
  291. #
  292. # This software is distributed WITHOUT ANY WARRANTY; without even the
  293. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  294. # See the License for more information.
  295. #=============================================================================
  296. # (To distribute this file outside of CMake, substitute the full
  297. # License text for the above reference.)
  298. # Define var in order to avoid multiple inclusion
  299. if(NOT CPackComponent_CMake_INCLUDED)
  300. set(CPackComponent_CMake_INCLUDED 1)
  301. # Argument-parsing macro from https://cmake.org/Wiki/CMakeMacroParseArguments
  302. macro(cpack_parse_arguments prefix arg_names option_names)
  303. set(${prefix}_DEFAULT_ARGS)
  304. foreach(arg_name ${arg_names})
  305. set(${prefix}_${arg_name})
  306. endforeach()
  307. foreach(option ${option_names})
  308. set(${prefix}_${option} FALSE)
  309. endforeach()
  310. set(current_arg_name DEFAULT_ARGS)
  311. set(current_arg_list)
  312. foreach(arg ${ARGN})
  313. set(larg_names ${arg_names})
  314. list(FIND larg_names "${arg}" is_arg_name)
  315. if (is_arg_name GREATER -1)
  316. set(${prefix}_${current_arg_name} ${current_arg_list})
  317. set(current_arg_name ${arg})
  318. set(current_arg_list)
  319. else ()
  320. set(loption_names ${option_names})
  321. list(FIND loption_names "${arg}" is_option)
  322. if (is_option GREATER -1)
  323. set(${prefix}_${arg} TRUE)
  324. else ()
  325. set(current_arg_list ${current_arg_list} ${arg})
  326. endif ()
  327. endif ()
  328. endforeach()
  329. set(${prefix}_${current_arg_name} ${current_arg_list})
  330. endmacro()
  331. # Macro that appends a SET command for the given variable name (var)
  332. # to the macro named strvar, but only if the variable named "var"
  333. # has been defined. The string will eventually be appended to a CPack
  334. # configuration file.
  335. macro(cpack_append_variable_set_command var strvar)
  336. if (DEFINED ${var})
  337. set(${strvar} "${${strvar}}set(${var}")
  338. foreach(APPENDVAL ${${var}})
  339. set(${strvar} "${${strvar}} ${APPENDVAL}")
  340. endforeach()
  341. set(${strvar} "${${strvar}})\n")
  342. endif ()
  343. endmacro()
  344. # Macro that appends a SET command for the given variable name (var)
  345. # to the macro named strvar, but only if the variable named "var"
  346. # has been defined and is a string. The string will eventually be
  347. # appended to a CPack configuration file.
  348. macro(cpack_append_string_variable_set_command var strvar)
  349. if (DEFINED ${var})
  350. list(LENGTH ${var} CPACK_APP_VALUE_LEN)
  351. if(${CPACK_APP_VALUE_LEN} EQUAL 1)
  352. set(${strvar} "${${strvar}}set(${var} \"${${var}}\")\n")
  353. endif()
  354. endif ()
  355. endmacro()
  356. # Macro that appends a SET command for the given variable name (var)
  357. # to the macro named strvar, but only if the variable named "var"
  358. # has been set to true. The string will eventually be
  359. # appended to a CPack configuration file.
  360. macro(cpack_append_option_set_command var strvar)
  361. if (${var})
  362. list(LENGTH ${var} CPACK_APP_VALUE_LEN)
  363. if(${CPACK_APP_VALUE_LEN} EQUAL 1)
  364. set(${strvar} "${${strvar}}set(${var} TRUE)\n")
  365. endif()
  366. endif ()
  367. endmacro()
  368. # Macro that adds a component to the CPack installer
  369. macro(cpack_add_component compname)
  370. string(TOUPPER ${compname} _CPACK_ADDCOMP_UNAME)
  371. cpack_parse_arguments(CPACK_COMPONENT_${_CPACK_ADDCOMP_UNAME}
  372. "DISPLAY_NAME;DESCRIPTION;GROUP;DEPENDS;INSTALL_TYPES;ARCHIVE_FILE"
  373. "HIDDEN;REQUIRED;DISABLED;DOWNLOADED"
  374. ${ARGN}
  375. )
  376. if (CPACK_COMPONENT_${_CPACK_ADDCOMP_UNAME}_DOWNLOADED)
  377. set(_CPACK_ADDCOMP_STR "\n# Configuration for downloaded component \"${compname}\"\n")
  378. else ()
  379. set(_CPACK_ADDCOMP_STR "\n# Configuration for component \"${compname}\"\n")
  380. endif ()
  381. if(NOT CPACK_MONOLITHIC_INSTALL)
  382. # If the user didn't set CPACK_COMPONENTS_ALL explicitly, update the
  383. # value of CPACK_COMPONENTS_ALL in the configuration file. This will
  384. # take care of any components that have been added after the CPack
  385. # moduled was included.
  386. if(NOT CPACK_COMPONENTS_ALL_SET_BY_USER)
  387. get_cmake_property(_CPACK_ADDCOMP_COMPONENTS COMPONENTS)
  388. set(_CPACK_ADDCOMP_STR "${_CPACK_ADDCOMP_STR}\nSET(CPACK_COMPONENTS_ALL")
  389. foreach(COMP ${_CPACK_ADDCOMP_COMPONENTS})
  390. set(_CPACK_ADDCOMP_STR "${_CPACK_ADDCOMP_STR} ${COMP}")
  391. endforeach()
  392. set(_CPACK_ADDCOMP_STR "${_CPACK_ADDCOMP_STR})\n")
  393. endif()
  394. endif()
  395. cpack_append_string_variable_set_command(
  396. CPACK_COMPONENT_${_CPACK_ADDCOMP_UNAME}_DISPLAY_NAME
  397. _CPACK_ADDCOMP_STR)
  398. cpack_append_string_variable_set_command(
  399. CPACK_COMPONENT_${_CPACK_ADDCOMP_UNAME}_DESCRIPTION
  400. _CPACK_ADDCOMP_STR)
  401. cpack_append_variable_set_command(
  402. CPACK_COMPONENT_${_CPACK_ADDCOMP_UNAME}_GROUP
  403. _CPACK_ADDCOMP_STR)
  404. cpack_append_variable_set_command(
  405. CPACK_COMPONENT_${_CPACK_ADDCOMP_UNAME}_DEPENDS
  406. _CPACK_ADDCOMP_STR)
  407. cpack_append_variable_set_command(
  408. CPACK_COMPONENT_${_CPACK_ADDCOMP_UNAME}_INSTALL_TYPES
  409. _CPACK_ADDCOMP_STR)
  410. cpack_append_string_variable_set_command(
  411. CPACK_COMPONENT_${_CPACK_ADDCOMP_UNAME}_ARCHIVE_FILE
  412. _CPACK_ADDCOMP_STR)
  413. cpack_append_option_set_command(
  414. CPACK_COMPONENT_${_CPACK_ADDCOMP_UNAME}_HIDDEN
  415. _CPACK_ADDCOMP_STR)
  416. cpack_append_option_set_command(
  417. CPACK_COMPONENT_${_CPACK_ADDCOMP_UNAME}_REQUIRED
  418. _CPACK_ADDCOMP_STR)
  419. cpack_append_option_set_command(
  420. CPACK_COMPONENT_${_CPACK_ADDCOMP_UNAME}_DISABLED
  421. _CPACK_ADDCOMP_STR)
  422. cpack_append_option_set_command(
  423. CPACK_COMPONENT_${_CPACK_ADDCOMP_UNAME}_DOWNLOADED
  424. _CPACK_ADDCOMP_STR)
  425. # Backward compatibility issue.
  426. # Write to config iff the macros is used after CPack.cmake has been
  427. # included, other it's not necessary because the variables
  428. # will be encoded by cpack_encode_variables.
  429. if(CPack_CMake_INCLUDED)
  430. file(APPEND "${CPACK_OUTPUT_CONFIG_FILE}" "${_CPACK_ADDCOMP_STR}")
  431. endif()
  432. endmacro()
  433. # Macro that adds a component group to the CPack installer
  434. macro(cpack_add_component_group grpname)
  435. string(TOUPPER ${grpname} _CPACK_ADDGRP_UNAME)
  436. cpack_parse_arguments(CPACK_COMPONENT_GROUP_${_CPACK_ADDGRP_UNAME}
  437. "DISPLAY_NAME;DESCRIPTION;PARENT_GROUP"
  438. "EXPANDED;BOLD_TITLE"
  439. ${ARGN}
  440. )
  441. set(_CPACK_ADDGRP_STR "\n# Configuration for component group \"${grpname}\"\n")
  442. cpack_append_string_variable_set_command(
  443. CPACK_COMPONENT_GROUP_${_CPACK_ADDGRP_UNAME}_DISPLAY_NAME
  444. _CPACK_ADDGRP_STR)
  445. cpack_append_string_variable_set_command(
  446. CPACK_COMPONENT_GROUP_${_CPACK_ADDGRP_UNAME}_DESCRIPTION
  447. _CPACK_ADDGRP_STR)
  448. cpack_append_string_variable_set_command(
  449. CPACK_COMPONENT_GROUP_${_CPACK_ADDGRP_UNAME}_PARENT_GROUP
  450. _CPACK_ADDGRP_STR)
  451. cpack_append_option_set_command(
  452. CPACK_COMPONENT_GROUP_${_CPACK_ADDGRP_UNAME}_EXPANDED
  453. _CPACK_ADDGRP_STR)
  454. cpack_append_option_set_command(
  455. CPACK_COMPONENT_GROUP_${_CPACK_ADDGRP_UNAME}_BOLD_TITLE
  456. _CPACK_ADDGRP_STR)
  457. # Backward compatibility issue.
  458. # Write to config iff the macros is used after CPack.cmake has been
  459. # included, other it's not necessary because the variables
  460. # will be encoded by cpack_encode_variables.
  461. if(CPack_CMake_INCLUDED)
  462. file(APPEND "${CPACK_OUTPUT_CONFIG_FILE}" "${_CPACK_ADDGRP_STR}")
  463. endif()
  464. endmacro()
  465. # Macro that adds an installation type to the CPack installer
  466. macro(cpack_add_install_type insttype)
  467. string(TOUPPER ${insttype} _CPACK_INSTTYPE_UNAME)
  468. cpack_parse_arguments(CPACK_INSTALL_TYPE_${_CPACK_INSTTYPE_UNAME}
  469. "DISPLAY_NAME"
  470. ""
  471. ${ARGN}
  472. )
  473. set(_CPACK_INSTTYPE_STR
  474. "\n# Configuration for installation type \"${insttype}\"\n")
  475. set(_CPACK_INSTTYPE_STR
  476. "${_CPACK_INSTTYPE_STR}list(APPEND CPACK_ALL_INSTALL_TYPES ${insttype})\n")
  477. cpack_append_string_variable_set_command(
  478. CPACK_INSTALL_TYPE_${_CPACK_INSTTYPE_UNAME}_DISPLAY_NAME
  479. _CPACK_INSTTYPE_STR)
  480. # Backward compatibility issue.
  481. # Write to config iff the macros is used after CPack.cmake has been
  482. # included, other it's not necessary because the variables
  483. # will be encoded by cpack_encode_variables.
  484. if(CPack_CMake_INCLUDED)
  485. file(APPEND "${CPACK_OUTPUT_CONFIG_FILE}" "${_CPACK_INSTTYPE_STR}")
  486. endif()
  487. endmacro()
  488. macro(cpack_configure_downloads site)
  489. cpack_parse_arguments(CPACK_DOWNLOAD
  490. "UPLOAD_DIRECTORY"
  491. "ALL;ADD_REMOVE;NO_ADD_REMOVE"
  492. ${ARGN}
  493. )
  494. set(CPACK_CONFIG_DL_STR
  495. "\n# Downloaded components configuration\n")
  496. set(CPACK_UPLOAD_DIRECTORY ${CPACK_DOWNLOAD_UPLOAD_DIRECTORY})
  497. set(CPACK_DOWNLOAD_SITE ${site})
  498. cpack_append_string_variable_set_command(
  499. CPACK_DOWNLOAD_SITE
  500. CPACK_CONFIG_DL_STR)
  501. cpack_append_string_variable_set_command(
  502. CPACK_UPLOAD_DIRECTORY
  503. CPACK_CONFIG_DL_STR)
  504. cpack_append_option_set_command(
  505. CPACK_DOWNLOAD_ALL
  506. CPACK_CONFIG_DL_STR)
  507. if (${CPACK_DOWNLOAD_ALL} AND NOT ${CPACK_DOWNLOAD_NO_ADD_REMOVE})
  508. set(CPACK_DOWNLOAD_ADD_REMOVE ON)
  509. endif ()
  510. set(CPACK_ADD_REMOVE ${CPACK_DOWNLOAD_ADD_REMOVE})
  511. cpack_append_option_set_command(
  512. CPACK_ADD_REMOVE
  513. CPACK_CONFIG_DL_STR)
  514. # Backward compatibility issue.
  515. # Write to config iff the macros is used after CPack.cmake has been
  516. # included, other it's not necessary because the variables
  517. # will be encoded by cpack_encode_variables.
  518. if(CPack_CMake_INCLUDED)
  519. file(APPEND "${CPACK_OUTPUT_CONFIG_FILE}" "${CPACK_CONFIG_DL_STR}")
  520. endif()
  521. endmacro()
  522. endif()