mirror of
https://github.com/overte-org/overte.git
synced 2025-04-15 06:08:22 +02:00
use specific shortcut names for PR builds
This commit is contained in:
parent
79a2b7f213
commit
068de5203c
2 changed files with 10 additions and 6 deletions
|
@ -82,10 +82,14 @@ macro(SET_PACKAGING_PARAMETERS)
|
||||||
set(DS_EXEC_NAME "domain-server.exe")
|
set(DS_EXEC_NAME "domain-server.exe")
|
||||||
set(AC_EXEC_NAME "assignment-client.exe")
|
set(AC_EXEC_NAME "assignment-client.exe")
|
||||||
|
|
||||||
# start menu shortcuts
|
# shortcut names
|
||||||
set(INTERFACE_SM_SHORTCUT_NAME "High Fidelity")
|
if (NOT PR_BUILD)
|
||||||
set(CONSOLE_SM_SHORTCUT_NAME "Server Console")
|
set(INTERFACE_SHORTCUT_NAME "High Fidelity")
|
||||||
|
set(CONSOLE_SHORTCUT_NAME "Server Console")
|
||||||
|
else ()
|
||||||
|
set(INTERFACE_SHORTCUT_NAME "High Fidelity - ${BUILD_VERSION}")
|
||||||
|
set(CONSOLE_SHORTCUT_NAME "Server Console - ${BUILD_VERSION}")
|
||||||
|
endif ()
|
||||||
# check if we need to find signtool
|
# check if we need to find signtool
|
||||||
if (PRODUCTION_BUILD OR PR_BUILD)
|
if (PRODUCTION_BUILD OR PR_BUILD)
|
||||||
find_program(SIGNTOOL_EXECUTABLE signtool PATHS "C:/Program Files (x86)/Windows Kits/8.1" PATH_SUFFIXES "bin/x64")
|
find_program(SIGNTOOL_EXECUTABLE signtool PATHS "C:/Program Files (x86)/Windows Kits/8.1" PATH_SUFFIXES "bin/x64")
|
||||||
|
|
|
@ -9,10 +9,10 @@
|
||||||
# See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
# See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
#
|
#
|
||||||
|
|
||||||
set(INTERFACE_SHORTCUT_NAME "@INTERFACE_SM_SHORTCUT_NAME@")
|
set(INTERFACE_SHORTCUT_NAME "@INTERFACE_SHORTCUT_NAME@")
|
||||||
set(INTERFACE_WIN_EXEC_NAME "@INTERFACE_EXEC_PREFIX@.exe")
|
set(INTERFACE_WIN_EXEC_NAME "@INTERFACE_EXEC_PREFIX@.exe")
|
||||||
set(CONSOLE_INSTALL_SUBDIR "@CONSOLE_INSTALL_DIR@")
|
set(CONSOLE_INSTALL_SUBDIR "@CONSOLE_INSTALL_DIR@")
|
||||||
set(CONSOLE_SHORTCUT_NAME "@CONSOLE_SM_SHORTCUT_NAME@")
|
set(CONSOLE_SHORTCUT_NAME "@CONSOLE_SHORTCUT_NAME@")
|
||||||
set(CONSOLE_WIN_EXEC_NAME "@CONSOLE_EXEC_NAME@")
|
set(CONSOLE_WIN_EXEC_NAME "@CONSOLE_EXEC_NAME@")
|
||||||
set(DS_EXEC_NAME "@DS_EXEC_NAME@")
|
set(DS_EXEC_NAME "@DS_EXEC_NAME@")
|
||||||
set(AC_EXEC_NAME "@AC_EXEC_NAME@")
|
set(AC_EXEC_NAME "@AC_EXEC_NAME@")
|
||||||
|
|
Loading…
Reference in a new issue