diff options
author | Erik Kundiman <erik@megapahit.org> | 2025-06-10 12:21:41 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2025-06-10 12:24:35 +0800 |
commit | 78f85aa6efdeb8ada9afb5083dc75e645aa34e8c (patch) | |
tree | 515724f247a30c105705f9152f3317561cf95121 /indra | |
parent | dd05837c7aa5314a553235f46d13c88df8e448a9 (diff) |
Windows menu shortcut & InstallDir without version
Referring to cpack-generators(7) manual, I don't know what to replace
the <compName> in CPACK_NSIS_<compName>_INSTALL_DIRECTORY with, but in
CPACK_NSIS_INSTALL_ROOT explanation, it mentions the full directory
presented to the end user, and from that we can conclude the variable we
need to set for customisation is just CPACK_PACKAGE_INSTALL_DIRECTORY.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/CMakeLists.txt b/indra/newview/CMakeLists.txt index 4e6531e22b..d7d2860fd9 100644 --- a/indra/newview/CMakeLists.txt +++ b/indra/newview/CMakeLists.txt @@ -1970,6 +1970,8 @@ if (WINDOWS) set(CPACK_NSIS_URL_INFO_ABOUT https://${VIEWER_PACKAGE_DOMAIN_NAME}) set(CPACK_NSIS_CONTACT $ENV{USER}@${VIEWER_PACKAGE_DOMAIN_NAME}) set(CPACK_NSIS_WELCOME_TITLE "Welcome to ${VIEWER_BINARY_NAME}!") + set(CPACK_NSIS_MENU_LINKS Megapahit.exe "Megapahit Viewer") + set(CPACK_PACKAGE_INSTALL_DIRECTORY ${VIEWER_BINARY_NAME}) if (FALSE) add_custom_command( |