rename console target to High Fidelity Console

This commit is contained in:
Stephen Birarda 2016-01-04 10:54:51 -08:00
parent 90cf69b9b5
commit 817bbb09d2
3 changed files with 8 additions and 8 deletions

View file

@ -15,7 +15,7 @@ macro(CONSOLIDATE_INSTALLER_COMPONENTS)
# add a command to copy the folder produced by electron-packager to package-bundle # add a command to copy the folder produced by electron-packager to package-bundle
add_custom_command( add_custom_command(
TARGET ${TARGET_NAME} POST_BUILD 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 () else ()
# add a command to copy the fixed up binary and libraries to package-bundle # add a command to copy the fixed up binary and libraries to package-bundle

View file

@ -20,9 +20,9 @@
"scripts": { "scripts": {
"start": "electron . --local-debug-builds --debug", "start": "electron . --local-debug-builds --debug",
"local-release": "electron . --local-release-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-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 --overwrite --prune --platform=win32 --arch=x64 --version=0.35.4 --icon=resources/console.ico", "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 --overwrite --prune --platform=linux --arch=x64 --version=0.35.4" "package-linux": "electron-packager . High\\ Fidelity\\ Console --overwrite --prune --platform=linux --arch=x64 --version=0.35.4"
}, },
"dependencies": { "dependencies": {
"extend": "^3.0.0", "extend": "^3.0.0",

View file

@ -24,7 +24,7 @@
!define company "$%INSTALLER_COMPANY%" !define company "$%INSTALLER_COMPANY%"
!define install_directory "$%INSTALLER_DIRECTORY%" !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 interface_exec "interface.exe"
!define stack_manager_exec "stack-manager.exe" !define stack_manager_exec "stack-manager.exe"
!define interface_icon "interface.ico" !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}\" File /r /x assignment-client.* /x domain-server.* /x interface.* /x stack-manager.* "${installer_srcdir}\"
SectionEnd SectionEnd
Section "HighFidelity Interface" "CLIENT" Section "High Fidelity Interface" "CLIENT"
SetOutPath $ChosenInstallDir SetOutPath $ChosenInstallDir
File /a "${installer_srcdir}\interface.*" File /a "${installer_srcdir}\interface.*"
File /a "${installer_srcdir}\${interface_icon}" File /a "${installer_srcdir}\${interface_icon}"
SectionEnd SectionEnd
Section "HighFidelity Server" "SERVER" Section "High Fidelity Server" "SERVER"
SetOutPath $ChosenInstallDir 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}\domain-server.*"
File /a "${installer_srcdir}\assignment-client.*" File /a "${installer_srcdir}\assignment-client.*"
File /a "${installer_srcdir}\${stack_manager_icon}" File /a "${installer_srcdir}\${stack_manager_icon}"