diff options
author | Colin Tracey <ctracey@nvidia.com> | 2015-09-25 20:06:08 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-10-06 13:08:37 (GMT) |
commit | 3758af12fab8bc3c6279400621be94c4aa540a70 (patch) | |
tree | dcc3b2723de4c17ca51764f7d2270c449a0544ee /Modules | |
parent | 3709e950f4ed7545a38c2506c19ee90ee58fa920 (diff) | |
download | CMake-3758af12fab8bc3c6279400621be94c4aa540a70.zip CMake-3758af12fab8bc3c6279400621be94c4aa540a70.tar.gz CMake-3758af12fab8bc3c6279400621be94c4aa540a70.tar.bz2 |
CPackNSIS: Add options to set the bitmap for NSIS installer left side
set MUI_WELCOMEFINISHPAGE_BITMAP
set MUI_UNWELCOMEFINISHPAGE_BITMAP
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/CPackNSIS.cmake | 8 | ||||
-rw-r--r-- | Modules/NSIS.template.in | 2 |
2 files changed, 10 insertions, 0 deletions
diff --git a/Modules/CPackNSIS.cmake b/Modules/CPackNSIS.cmake index c6b3d19..db5984a 100644 --- a/Modules/CPackNSIS.cmake +++ b/Modules/CPackNSIS.cmake @@ -30,6 +30,14 @@ # # undocumented. # +# .. variable:: CPACK_NSIS_MUI_WELCOMEFINISHPAGE_BITMAP +# +# The filename of a bitmap to use as the NSIS MUI_WELCOMEFINISHPAGE_BITMAP. +# +# .. variable:: CPACK_NSIS_MUI_UNWELCOMEFINISHPAGE_BITMAP +# +# The filename of a bitmap to use as the NSIS MUI_UNWELCOMEFINISHPAGE_BITMAP. +# # .. variable:: CPACK_NSIS_EXTRA_PREINSTALL_COMMANDS # # Extra NSIS commands that will be added to the beginning of the install diff --git a/Modules/NSIS.template.in b/Modules/NSIS.template.in index 76310af..1ef3d28 100644 --- a/Modules/NSIS.template.in +++ b/Modules/NSIS.template.in @@ -542,6 +542,8 @@ FunctionEnd ; Define some macro setting for the gui @CPACK_NSIS_INSTALLER_MUI_ICON_CODE@ @CPACK_NSIS_INSTALLER_ICON_CODE@ +@CPACK_NSIS_INSTALLER_MUI_WELCOMEFINISH_CODE@ +@CPACK_NSIS_INSTALLER_MUI_UNWELCOMEFINISH_CODE@ @CPACK_NSIS_INSTALLER_MUI_COMPONENTS_DESC@ @CPACK_NSIS_INSTALLER_MUI_FINISHPAGE_RUN_CODE@ |