summaryrefslogtreecommitdiffstats
path: root/Help/cpack_gen/nsis.rst
Commit message (Collapse)AuthorAgeFilesLines
* CPack/NSIS: Add options to set makensis argumentsJohnny Jazeix2022-09-261-0/+31
| | | | Fixes: #23446
* Merge topic 'nsis_ignore_license_page'Brad King2021-08-031-0/+6
|\ | | | | | | | | | | | | 795e406e3b CPack/NSIS: Add option to not display license page Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !6422
| * CPack/NSIS: Add option to not display license pageJohnny Jazeix2021-08-011-0/+6
| | | | | | | | Fixes: #22215
* | CPack/NSIS: Bump minimal version of NSIS to 3.03Johnny Jazeix2021-08-021-2/+2
|/ | | | Fixes: #22508
* Merge branch 'master' into nsis-branding-trim-positionCraig Scott2021-03-241-0/+6
|\
| * CPack/NSIS: Add option for setting custom makensis executableJohnny Jazeix2021-02-221-0/+6
| | | | | | | | | | | | It allows users to set a custom one without changing the PATH environment variable. Fixes: #21733
* | CPack: Validate and document NSIS branding text trim positionsCraig Scott2021-03-241-0/+2
|/
* CPack/NSIS: Add option for setting branding textJohnny Jazeix2021-02-071-0/+13
| | | | | | | See https://nsis.sourceforge.io/Reference/BrandingText for more information. Fixes: #21479
* Help: Add `.. versionadded` directives to CPack generator docsNikita Nemkin2020-11-121-1/+22
| | | | Issue: #19715
* CPack/NSIS: Add option for setting DPI-awareJohnny Jazeix2020-04-141-0/+4
| | | | | | | See https://nsis.sourceforge.io/Reference/ManifestDPIAware for more information. Fixes: #17724
* CPack/NSIS: Document and check requirement of at least NSIS 3.0Brad King2020-03-311-1/+3
| | | | | | | | | Since commit 9d2816544e (CPack/NSIS: Also preload the "UserInfo.dll" plugin, 2020-01-04, v3.17.0-rc1~204^2) we require NSIS 3.0. Since older versions do not support Windows 8 or above, we can now require at least version 3.0. Fixes: #20514
* CPack/NSIS: Add option for setting MUI_HEADERIMAGE_BITMAPJohnny Jazeix2020-01-021-0/+4
| | | | Fixes: #20120
* CPack/NSIS: Add options for custom welcome/finish titles + display on 3 linesJohnny Jazeix2019-11-051-0/+16
| | | | Fixes: #11275
* CPack/NSIS: Add option for custom Uninstall filenameJohnny Jazeix2019-10-251-0/+5
| | | | Fixes: #10728
* Modules: Update documentation formattingBartosz Kosiorek2019-04-081-6/+6
|
* Help: Improve formatting of Help documentationBartosz Kosiorek2019-04-081-16/+16
|
* Help: Add new section for CPack generatorsKyle Edwards2018-06-211-0/+130
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.