diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 4d3de10..177d4ff 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -168,6 +168,8 @@ endif() # Windows +# Set icon for the splash image used in Windows NSIS installers. +set(CPACK_PACKAGE_ICON "${QTK_RESOURCES}/icons/win/kilroy_splash.bmp") set(CPACK_NSIS_MODIFY_PATH ON) set(CPACK_NSIS_ENABLE_UNINSTALL_BEFORE_INSTALL ON) # https://nsis.sourceforge.io/Reference/CreateShortCut @@ -180,6 +182,11 @@ set( "Delete '$SMPROGRAMS\\\\$START_MENU\\\\Qtk.lnk'" ) +# Set icon for the installer executable. +set(CPACK_NSIS_MUI_ICON "${QTK_RESOURCES}/icons/win/kilroy.ico") +# Set icon for uninstaller executable. +set(CPACK_NSIS_MUI_UNIICON "${QTK_RESOURCES}/icons/win/kilroy.ico") + if(WIN32) set(CPACK_SOURCE_GENERATOR ZIP) else()