summaryrefslogtreecommitdiff
path: root/Help/cpack_gen
Commit message (Collapse)AuthorAgeFilesLines
* Merge topic 'cpack-DEB-use-CPACK_PACKAGE_DESCRIPTION_FILE'Kyle Edwards2019-09-261-3/+11
|\ | | | | | | | | | | | | | | | | 33c7ea513d CPackDeb: Use `CPACK_PACKAGE_DESCRIPTION_FILE` 53be31e19c Refactor: Use `list` commands instead of old-way string ops b2c67a7703 Style: Remove spaces after command call and `(` Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !3541
| * CPackDeb: Use `CPACK_PACKAGE_DESCRIPTION_FILE`Alex Turbov2019-09-221-3/+11
| | | | | | | | Also, handle per-component description nicely.
* | CPackWIX: Allow omitting program menu folder and uninstall shortcutAlexej Harm2019-09-121-0/+4
|/
* CPack: Add generator for .tar.zst packagesRegina Pfeifer2019-09-041-0/+1
|
* CPack/IFW: Add StyleSheet fieldZaytsev Yuriy2019-05-021-0/+4
|
* Modules: Update documentation formattingBartosz Kosiorek2019-04-081-6/+6
|
* Help: Improve formatting of Help documentationBartosz Kosiorek2019-04-081-16/+16
|
* Help: Improve documentation formatingBartosz Kosiorek2019-04-043-30/+32
|
* CPack/Deb: Remove paxr as a supported tar format for a .debGuillem Jover2018-11-281-6/+6
| | | | | | | | | The only format supported from the ones available within cpack is gnutar, which supports large numbers encoded in base-256, and long filenames and linknames. PAX is not and has never been a supported format by dpkg. Fixes: #18620
* Help: Replace use of :code:`` with plain reST syntaxBrad King2018-11-284-14/+14
| | | | | This appeared in a few CPack generator documents but is not used elsewhere.
* Help: Use correct CPack generator namesCraig Scott2018-11-064-24/+24
| | | | | | | | | | CPack generator names were not used consistently throughout the documentation, resulting in ambiguity about what the correct name was for use with the `cpack -G` option. With the changes in this commit, the cpack-generators(7) page of the manual now shows the correct names and other help pages no longer use inconsistent or incorrect names.
* CPack: Rename Ext generator to ExternalCraig Scott2018-11-051-9/+9
| | | | | Ext and External were used inconsistently in the code and the docs. This change converts all uses of Ext to External, including within variable names used by the generator.
* CPack/Deb: Add ability to split out debug symbols into .ddeb packageAndrew Fuller2018-09-211-0/+20
|
* Help: Fix typoAndrew Fuller2018-09-181-3/+3
|
* Help: Replace occurrences of "Mac OS X" with "macOS"Bartosz Kosiorek2018-09-055-50/+50
| | | | | | | | Apple's main Operating system changed their name from OS X to macOS: https://www.engadget.com/2016/06/13/os-x-is-now-macos/ Revise documentation accordingly.
* Merge topic 'cpack-ext-stage-and-run'Brad King2018-08-301-10/+44
|\ | | | | | | | | | | | | 4a0f664aaf CPackExt: Add CPACK_EXT_ENABLE_STAGING and CPACK_EXT_PACKAGE_SCRIPT Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2272
| * CPackExt: Add CPACK_EXT_ENABLE_STAGING and CPACK_EXT_PACKAGE_SCRIPTNils Gladitz2018-08-141-10/+44
| | | | | | | | | | | | | | | | | | CPACK_EXT_ENABLE_STAGING enables optional staging and CPACK_EXT_PACKAGE_SCRIPT allows to specify an optional script file that can package staged files via an external packaging tool. Issue: #18236
* | doc: Consistently use <PackageName> for describing the name of a packageJean-Christophe Fillion-Robin2018-08-141-2/+2
|/
* CPack/Deb: Support SOURCE_DATE_EPOCH when packaging filesAndrew Fuller2018-07-251-0/+8
|
* Help: Add documentation for CPack External generatorKyle Edwards2018-07-021-0/+249
|
* Help: Add new section for CPack generatorsKyle Edwards2018-06-2113-0/+2874
The documentation for CPack generators previously lived in their respective internal CMake modules. This setup was misleading, because it implied that you should include the modules in your own code, which is not the case. Moving the documentation into a separate section does a better job of hiding the internal modules, which are just an implementation detail. The generator documentation has also been modified to remove any references to the module name. The CPackIFW module is a special exception: since it has user-facing macros, the documentation for these macros has been kept in the module page, while all other documentation related to the IFW generator has been moved into the new section. To make it easier to find the new documentation, the old help pages for the CPack*.cmake modules have not been deleted, but have been replaced with a link to their respective help page in the new documentation section.