mirror of
https://github.com/overte-org/overte.git
synced 2025-04-19 15:03:53 +02:00
rename console target to High Fidelity Console
This commit is contained in:
parent
90cf69b9b5
commit
817bbb09d2
3 changed files with 8 additions and 8 deletions
|
@ -15,7 +15,7 @@ macro(CONSOLIDATE_INSTALLER_COMPONENTS)
|
|||
# add a command to copy the folder produced by electron-packager to package-bundle
|
||||
add_custom_command(
|
||||
TARGET ${TARGET_NAME} POST_BUILD
|
||||
COMMAND "${CMAKE_COMMAND}" -E copy_directory ${CMAKE_CURRENT_BINARY_DIR}/High\ Fidelity-* ${CMAKE_BINARY_DIR}/package-bundle
|
||||
COMMAND "${CMAKE_COMMAND}" -E copy_directory ${CMAKE_CURRENT_BINARY_DIR}/High\ Fidelity\ Console-* ${CMAKE_BINARY_DIR}/package-bundle
|
||||
)
|
||||
else ()
|
||||
# add a command to copy the fixed up binary and libraries to package-bundle
|
||||
|
|
|
@ -20,9 +20,9 @@
|
|||
"scripts": {
|
||||
"start": "electron . --local-debug-builds --debug",
|
||||
"local-release": "electron . --local-release-builds --debug",
|
||||
"package-darwin": "electron-packager . High\\ Fidelity --overwrite --prune --platform=darwin --arch=x64 --version=0.35.4 --icon=resources/console.icns",
|
||||
"package-win": "electron-packager . High\\ Fidelity --overwrite --prune --platform=win32 --arch=x64 --version=0.35.4 --icon=resources/console.ico",
|
||||
"package-linux": "electron-packager . High\\ Fidelity --overwrite --prune --platform=linux --arch=x64 --version=0.35.4"
|
||||
"package-darwin": "electron-packager . High\\ Fidelity\\ Console --overwrite --prune --platform=darwin --arch=x64 --version=0.35.4 --icon=resources/console.icns",
|
||||
"package-win": "electron-packager . High\\ Fidelity\\ Console --overwrite --prune --platform=win32 --arch=x64 --version=0.35.4 --icon=resources/console.ico",
|
||||
"package-linux": "electron-packager . High\\ Fidelity\\ Console --overwrite --prune --platform=linux --arch=x64 --version=0.35.4"
|
||||
},
|
||||
"dependencies": {
|
||||
"extend": "^3.0.0",
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
!define company "$%INSTALLER_COMPANY%"
|
||||
!define install_directory "$%INSTALLER_DIRECTORY%"
|
||||
|
||||
; Executables and icons for GUI applications that will be added as shortcuts.
|
||||
; Executables and icons for GUI applications that will be added as shortcuts.
|
||||
!define interface_exec "interface.exe"
|
||||
!define stack_manager_exec "stack-manager.exe"
|
||||
!define interface_icon "interface.ico"
|
||||
|
@ -103,15 +103,15 @@ Section "Base Files" "BASE"
|
|||
File /r /x assignment-client.* /x domain-server.* /x interface.* /x stack-manager.* "${installer_srcdir}\"
|
||||
SectionEnd
|
||||
|
||||
Section "HighFidelity Interface" "CLIENT"
|
||||
Section "High Fidelity Interface" "CLIENT"
|
||||
SetOutPath $ChosenInstallDir
|
||||
File /a "${installer_srcdir}\interface.*"
|
||||
File /a "${installer_srcdir}\${interface_icon}"
|
||||
SectionEnd
|
||||
|
||||
Section "HighFidelity Server" "SERVER"
|
||||
Section "High Fidelity Server" "SERVER"
|
||||
SetOutPath $ChosenInstallDir
|
||||
File /a "${installer_srcdir}\stack-manager.*"
|
||||
File /a "${installer_srcdir}\High\ Fidelity\ Console.*"
|
||||
File /a "${installer_srcdir}\domain-server.*"
|
||||
File /a "${installer_srcdir}\assignment-client.*"
|
||||
File /a "${installer_srcdir}\${stack_manager_icon}"
|
||||
|
|
Loading…
Reference in a new issue