summaryrefslogtreecommitdiffstats
path: root/Help/manual/cpack.1.rst
Commit message (Collapse)AuthorAgeFilesLines
* CPack: Remove CPACK_INSTALL_CMAKE_CONFIGURATIONSAlex Turbov2019-11-111-0/+2
| | | | | | | | | | | In commit da5ac4bb60 (cpack: Add `CPACK_INSTALL_CMAKE_CONFIGURATIONS` variable, 2019-07-10, v3.16.0-rc1~165^2) we added both the variable and support for `cpack -C` with multiple configurations. Drop the variable because the `package` target cannot ensure that all of the configurations are built. Keep the command-line interface so that it can be used manually in scripts. Fixes: #19918
* cpack: Add `CPACK_INSTALL_CMAKE_CONFIGURATIONS` variableAlex Turbov2019-08-301-3/+5
| | | | | | | | | For the multi-configuration generators one can specify the list of configurations to include in the package. E.g. having a project, where debug libraries have a suffix to distinct them from the release builds, one can build the package containing both `Debug` and `Release` binaries.
* Help: Improve formatting of Help documentationBartosz Kosiorek2019-04-081-1/+1
|
* Help: Emphasize tool names in their manualsJoachim Wuttke (l)2018-11-261-3/+3
| | | | | | Print the name of the **cmake** executable in boldface, so that it does not appear less prominent than other shell commands (which are underlaid with links). Similarly the other tool manuals.
* Help: Explain interaction of cpack(1) and CPack.Joachim Wuttke (l)2018-11-151-14/+26
| | | | | | | In particular, make clear that package/installer generators are not the makefile generators of the cmake command. Also insert sections in CPack doc, and capitalize section titles.
* Help: Fix generators link in cpack(1) manualCraig Scott2018-11-031-2/+3
| | | | | | | | Minor rewording around the updated link and extra blank line added to improve readability and remove a potential ambiguity around the same area. Fixes: #18545
* Help: Improve accuracy, readability and cross-referencing of cpack docsCraig Scott2018-04-271-65/+58
| | | | | | This is primarily a cleanup of the cpack(1) page. The cpack.cxx file and CPack module were also updated to make the docs relating to the generator specification and option names consistent in all three places.
* CPack: accept --trace and --trace-expandIsaiah Norton2018-01-231-0/+6
|
* Fix spelling typos in comments and documentation (#16037)Felix Geyer2016-03-291-1/+1
| | | | | The Debian package checker tool (lintian) detected several typos in CMake.
* Help: Format manual/*.1.rst options as definition listsKitware Robot2013-11-141-32/+42
| | | | | Convert the command-line option documentation formatting from bullet lists to definition lists.
* Help: Refine manual/*.1.rst usage summariesBrad King2013-11-041-2/+4
| | | | | Use a parsed-literal block to list possible command-line signatures. Add an "Options" section header before the list of options.
* Help: Glob manual/*.rst in Sphinx configurationBrad King2013-10-301-0/+2
| | | | | | | Add the man page description line as explicit markup at the top of each Help/manual/*.rst file and scan it from conf.py to automatically generate the man_pages Sphinx configuration value. This reduces the number of places that need to be changed when a new manual is added.
* Make --help-* options available from all command-line toolsBrad King2013-10-161-73/+1
| | | | | | | | | | | Make the standard --help-* options available from all command-line tools. Drop options that are no longer supported: --copyright, --help-full, --help-html, --help-man, --help-compatcommands, --help-custom-modules De-duplicate Help/manual/*.1.rst help options by using an OPTIONS_HELP.txt file included from each manual.
* Help: Organize manual/*.1.rst sectionsBrad King2013-10-161-23/+8
| | | | | | | Add "Synopsis", "Description", and "See Also" manual page section headers. These are typical of .1 man section pages. Also de-duplicate the See Also section links using a separate LINKS.txt file included from each manual.
* Help: Drop leftover conversion content from manual/*.1.rstBrad King2013-10-161-41/+0
| | | | | Some text in these manuals is left from the old full help transition text generated by the automatic conversion process. Drop it.
* Help: Fix reStructuredText syntax in auto-generated documentsBrad King2013-10-151-0/+1
|
* Convert builtin help to reStructuredText source filesKitware Robot2013-10-151-0/+210
Run the convert-help.bash script to convert documentation: ./convert-help.bash "/path/to/CMake-build/bin" Then remove it.