mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 01:17:14 +02:00
Changes per convo with Philip
This commit is contained in:
parent
d8f52e62fe
commit
ea6850c423
4 changed files with 92 additions and 78 deletions
|
@ -7,21 +7,19 @@ macro(CONSOLIDATE_STACK_COMPONENTS)
|
||||||
if (TARGET_NAME STREQUAL "interface")
|
if (TARGET_NAME STREQUAL "interface")
|
||||||
set (ICON_FILE_PATH "${PROJECT_SOURCE_DIR}/icon/${INTERFACE_ICON}")
|
set (ICON_FILE_PATH "${PROJECT_SOURCE_DIR}/icon/${INTERFACE_ICON}")
|
||||||
set (ICON_DESTINATION_NAME "interface.ico")
|
set (ICON_DESTINATION_NAME "interface.ico")
|
||||||
set (DEPLOYMENT_PATH "front-end-deployment")
|
|
||||||
else ()
|
else ()
|
||||||
set (ICON_FILE_PATH "${PROJECT_SOURCE_DIR}/assets/${STACK_MANAGER_ICON}")
|
set (ICON_FILE_PATH "${PROJECT_SOURCE_DIR}/assets/${STACK_MANAGER_ICON}")
|
||||||
set (ICON_DESTINATION_NAME "stack-manager.ico")
|
set (ICON_DESTINATION_NAME "stack-manager.ico")
|
||||||
set (DEPLOYMENT_PATH "back-end-deployment")
|
|
||||||
endif ()
|
endif ()
|
||||||
add_custom_command(
|
add_custom_command(
|
||||||
TARGET ${TARGET_NAME} POST_BUILD
|
TARGET ${TARGET_NAME} POST_BUILD
|
||||||
COMMAND "${CMAKE_COMMAND}" -E copy ${ICON_FILE_PATH} ${CMAKE_BINARY_DIR}/${DEPLOYMENT_PATH}/${ICON_DESTINATION_NAME}
|
COMMAND "${CMAKE_COMMAND}" -E copy ${ICON_FILE_PATH} ${CMAKE_BINARY_DIR}/package-bundle/${ICON_DESTINATION_NAME}
|
||||||
COMMAND "${CMAKE_COMMAND}" -E copy_directory $<TARGET_FILE_DIR:${TARGET_NAME}> ${CMAKE_BINARY_DIR}/${DEPLOYMENT_PATH}
|
COMMAND "${CMAKE_COMMAND}" -E copy_directory $<TARGET_FILE_DIR:${TARGET_NAME}> ${CMAKE_BINARY_DIR}/package-bundle
|
||||||
)
|
)
|
||||||
else ()
|
else ()
|
||||||
add_custom_command(
|
add_custom_command(
|
||||||
TARGET ${TARGET_NAME} POST_BUILD
|
TARGET ${TARGET_NAME} POST_BUILD
|
||||||
COMMAND "${CMAKE_COMMAND}" -E copy_directory $<TARGET_FILE_DIR:${TARGET_NAME}> ${CMAKE_BINARY_DIR}/back-end-deployment
|
COMMAND "${CMAKE_COMMAND}" -E copy_directory $<TARGET_FILE_DIR:${TARGET_NAME}> ${CMAKE_BINARY_DIR}/package-bundle
|
||||||
)
|
)
|
||||||
endif ()
|
endif ()
|
||||||
endif ()
|
endif ()
|
||||||
|
|
|
@ -11,8 +11,7 @@
|
||||||
|
|
||||||
macro(GENERATE_INSTALLERS)
|
macro(GENERATE_INSTALLERS)
|
||||||
if (DEFINED DEPLOY_PACKAGE AND DEPLOY_PACKAGE AND WIN32)
|
if (DEFINED DEPLOY_PACKAGE AND DEPLOY_PACKAGE AND WIN32)
|
||||||
file(MAKE_DIRECTORY "${CMAKE_BINARY_DIR}/front-end-deployment")
|
file(MAKE_DIRECTORY "${CMAKE_BINARY_DIR}/package-bundle")
|
||||||
file(MAKE_DIRECTORY "${CMAKE_BINARY_DIR}/back-end-deployment")
|
|
||||||
find_program(MAKENSIS_COMMAND makensis PATHS [HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\NSIS])
|
find_program(MAKENSIS_COMMAND makensis PATHS [HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\NSIS])
|
||||||
if (NOT MAKENSIS_COMMAND)
|
if (NOT MAKENSIS_COMMAND)
|
||||||
message(FATAL_ERROR "The Nullsoft Scriptable Install Systems is required for generating packaged installers on Windows (http://nsis.sourceforge.net/)")
|
message(FATAL_ERROR "The Nullsoft Scriptable Install Systems is required for generating packaged installers on Windows (http://nsis.sourceforge.net/)")
|
||||||
|
@ -20,8 +19,7 @@ macro(GENERATE_INSTALLERS)
|
||||||
add_custom_target(
|
add_custom_target(
|
||||||
build-package ALL
|
build-package ALL
|
||||||
DEPENDS interface assignment-client domain-server stack-manager
|
DEPENDS interface assignment-client domain-server stack-manager
|
||||||
COMMAND set INSTALLER_FRONTEND_DIR=${CMAKE_BINARY_DIR}/front-end-deployment
|
COMMAND set INSTALLER_SOURCE_DIR=${CMAKE_BINARY_DIR}/package-bundle
|
||||||
COMMAND set INSTALLER_BACKEND_DIR=${CMAKE_BINARY_DIR}/back-end-deployment
|
|
||||||
COMMAND set INSTALLER_NAME=${CMAKE_BINARY_DIR}/${INSTALLER_NAME}
|
COMMAND set INSTALLER_NAME=${CMAKE_BINARY_DIR}/${INSTALLER_NAME}
|
||||||
COMMAND set INSTALLER_SCRIPTS_DIR=${CMAKE_SOURCE_DIR}/examples
|
COMMAND set INSTALLER_SCRIPTS_DIR=${CMAKE_SOURCE_DIR}/examples
|
||||||
COMMAND set INSTALLER_COMPANY=${INSTALLER_COMPANY}
|
COMMAND set INSTALLER_COMPANY=${INSTALLER_COMPANY}
|
||||||
|
|
|
@ -258,8 +258,7 @@ if (WIN32)
|
||||||
if (DEFINED DEPLOY_PACKAGE AND DEPLOY_PACKAGE)
|
if (DEFINED DEPLOY_PACKAGE AND DEPLOY_PACKAGE)
|
||||||
add_custom_command(
|
add_custom_command(
|
||||||
TARGET ${TARGET_NAME} POST_BUILD
|
TARGET ${TARGET_NAME} POST_BUILD
|
||||||
COMMAND "${CMAKE_COMMAND}" -E copy ${OPENSSL_DLL_PATH}/ssleay32.dll ${CMAKE_BINARY_DIR}/front-end-deployment/
|
COMMAND "${CMAKE_COMMAND}" -E copy ${OPENSSL_DLL_PATH}/ssleay32.dll ${CMAKE_BINARY_DIR}/package-bundle/
|
||||||
COMMAND "${CMAKE_COMMAND}" -E copy ${OPENSSL_DLL_PATH}/ssleay32.dll ${CMAKE_BINARY_DIR}/back-end-deployment/
|
|
||||||
)
|
)
|
||||||
endif ()
|
endif ()
|
||||||
endif ()
|
endif ()
|
||||||
|
|
|
@ -5,12 +5,10 @@
|
||||||
;------------------------------------------------------------------------------------------------------
|
;------------------------------------------------------------------------------------------------------
|
||||||
; Source Directory Definition
|
; Source Directory Definition
|
||||||
;
|
;
|
||||||
; frontend_srcdir = Source directory for Interface
|
; installer_srcdir = Source directory for Interface
|
||||||
; backend_srcdir = Source directory for Stack Manager and server stack
|
|
||||||
; scripts_srcdir = Source directory for JS scripts
|
; scripts_srcdir = Source directory for JS scripts
|
||||||
|
|
||||||
!define frontend_srcdir "$%INSTALLER_FRONTEND_DIR%"
|
!define installer_srcdir "$%INSTALLER_SOURCE_DIR%"
|
||||||
!define backend_srcdir "$%INSTALLER_BACKEND_DIR%"
|
|
||||||
!define scripts_srcdir "$%INSTALLER_SCRIPTS_DIR%"
|
!define scripts_srcdir "$%INSTALLER_SCRIPTS_DIR%"
|
||||||
|
|
||||||
; Install Directories, Icons and Registry entries
|
; Install Directories, Icons and Registry entries
|
||||||
|
@ -35,8 +33,7 @@
|
||||||
; Registry entries
|
; Registry entries
|
||||||
!define regkey "Software\${install_directory}"
|
!define regkey "Software\${install_directory}"
|
||||||
!define uninstkey "Software\Microsoft\Windows\CurrentVersion\Uninstall\${install_directory}"
|
!define uninstkey "Software\Microsoft\Windows\CurrentVersion\Uninstall\${install_directory}"
|
||||||
!define frontend_instdir "$PROGRAMFILES64\${install_directory}"
|
!define instdir "$PROGRAMFILES64\${install_directory}"
|
||||||
!define backend_instdir "$APPDATA\${install_directory}"
|
|
||||||
|
|
||||||
; Start Menu program group
|
; Start Menu program group
|
||||||
!define startmenu_company "$SMPROGRAMS\${install_directory}"
|
!define startmenu_company "$SMPROGRAMS\${install_directory}"
|
||||||
|
@ -44,8 +41,7 @@
|
||||||
;------------------------------------------------------------------------------------------------------
|
;------------------------------------------------------------------------------------------------------
|
||||||
; Local Variables and Other Options
|
; Local Variables and Other Options
|
||||||
|
|
||||||
Var ChosenFrontEndInstallDir
|
var ChosenInstallDir
|
||||||
Var ChosenBackEndInstallDir
|
|
||||||
|
|
||||||
SetCompressor bzip2
|
SetCompressor bzip2
|
||||||
ShowInstDetails hide
|
ShowInstDetails hide
|
||||||
|
@ -56,8 +52,8 @@ SetDateSave on
|
||||||
SetDatablockOptimize on
|
SetDatablockOptimize on
|
||||||
CRCCheck on
|
CRCCheck on
|
||||||
SilentInstall normal
|
SilentInstall normal
|
||||||
Icon "${frontend_srcdir}\${interface_icon}"
|
Icon "${installer_srcdir}\${interface_icon}"
|
||||||
UninstallIcon "${frontend_srcdir}\${interface_icon}"
|
UninstallIcon "${installer_srcdir}\${interface_icon}"
|
||||||
UninstallText "This will uninstall ${company}."
|
UninstallText "This will uninstall ${company}."
|
||||||
Name "${company}"
|
Name "${company}"
|
||||||
Caption "${company}"
|
Caption "${company}"
|
||||||
|
@ -66,60 +62,67 @@ OutFile "${setup}"
|
||||||
;------------------------------------------------------------------------------------------------------
|
;------------------------------------------------------------------------------------------------------
|
||||||
; Components
|
; Components
|
||||||
|
|
||||||
Section /o "DDE Face Recognition" SEC01
|
Section /o "DDE Face Recognition" "DDE"
|
||||||
SetOutPath "$ChosenFrontEndInstallDir"
|
SetOutPath "$ChosenInstallDir"
|
||||||
CreateDirectory $ChosenFrontEndInstallDir\dde
|
CreateDirectory $ChosenInstallDir\dde
|
||||||
NSISdl::download "https://s3-us-west-1.amazonaws.com/hifi-production/optionals/dde-installer.exe" "$ChosenFrontEndInstallDir\dde-installer.exe"
|
NSISdl::download "https://s3-us-west-1.amazonaws.com/hifi-production/optionals/dde-installer.exe" "$ChosenInstallDir\dde-installer.exe"
|
||||||
ExecWait '"$ChosenFrontEndInstallDir\dde-installer.exe" /q:a /t:"$ChosenFrontEndInstallDir\dde"'
|
ExecWait '"$ChosenInstallDir\dde-installer.exe" /q:a /t:"$ChosenInstallDir\dde"'
|
||||||
SectionEnd
|
SectionEnd
|
||||||
|
|
||||||
Section "Registry Entries and Procotol Handler" SEC02
|
Section "Registry Entries and Procotol Handler" "REGISTRY"
|
||||||
SetRegView 64
|
SetRegView 64
|
||||||
SectionIn RO
|
SectionIn RO
|
||||||
WriteRegStr HKLM "${regkey}" "Install_Dir" "$ChosenFrontEndInstallDir"
|
WriteRegStr HKLM "${regkey}" "Install_Dir" "$ChosenInstallDir"
|
||||||
WriteRegStr HKLM "${regkey}" "Backend_Install_Dir" "$ChosenBackEndInstallDir"
|
|
||||||
WriteRegStr HKLM "${uninstkey}" "DisplayName" "${install_directory} (remove only)"
|
WriteRegStr HKLM "${uninstkey}" "DisplayName" "${install_directory} (remove only)"
|
||||||
WriteRegStr HKLM "${uninstkey}" "UninstallString" '"$ChosenFrontEndInstallDir\${uninstaller}"'
|
WriteRegStr HKLM "${uninstkey}" "UninstallString" '"$ChosenInstallDir\${uninstaller}"'
|
||||||
WriteRegStr HKCR "${company}\Shell\open\command\" "" '"$ChosenFrontEndInstallDir\${interface_exec} "%1"'
|
WriteRegStr HKCR "${company}\Shell\open\command\" "" '"$ChosenInstallDir\${interface_exec} "%1"'
|
||||||
WriteRegStr HKCR "${company}\DefaultIcon" "" "$ChosenFrontEndInstallDir\${interface_icon}"
|
WriteRegStr HKCR "${company}\DefaultIcon" "" "$ChosenInstallDir\${interface_icon}"
|
||||||
|
|
||||||
; hifi:// protocol handler registry entries
|
; hifi:// protocol handler registry entries
|
||||||
WriteRegStr HKCR 'hifi' '' 'URL:Alert Protocol'
|
WriteRegStr HKCR 'hifi' '' 'URL:Alert Protocol'
|
||||||
WriteRegStr HKCR 'hifi' 'URL Protocol' ''
|
WriteRegStr HKCR 'hifi' 'URL Protocol' ''
|
||||||
WriteRegStr HKCR 'hifi\DefaultIcon' '' '$ChosenFrontEndInstallDir\${interface_icon},1'
|
WriteRegStr HKCR 'hifi\DefaultIcon' '' '$ChosenInstallDir\${interface_icon},1'
|
||||||
WriteRegStr HKCR 'hifi\shell\open\command' '' '$ChosenFrontEndInstallDir\${interface_exec} --url "%1"'
|
WriteRegStr HKCR 'hifi\shell\open\command' '' '$ChosenInstallDir\${interface_exec} --url "%1"'
|
||||||
|
|
||||||
SetOutPath $ChosenFrontEndInstallDir
|
SetOutPath $ChosenInstallDir
|
||||||
WriteUninstaller "$ChosenFrontEndInstallDir\${uninstaller}"
|
WriteUninstaller "$ChosenInstallDir\${uninstaller}"
|
||||||
Exec '"$ChosenFrontEndInstallDir\2013_vcredist_x64.exe" /q /norestart'
|
Exec '"$ChosenInstallDir\2013_vcredist_x64.exe" /q /norestart'
|
||||||
Exec '"$ChosenFrontEndInstallDir\2010_vcredist_x86.exe" /q /norestart'
|
Exec '"$ChosenInstallDir\2010_vcredist_x86.exe" /q /norestart'
|
||||||
SectionEnd
|
SectionEnd
|
||||||
|
|
||||||
Section "Interface Client" SEC03
|
Section "Base Files" "BASE"
|
||||||
SetOutPath $ChosenFrontEndInstallDir
|
SectionIn RO
|
||||||
File /r "${frontend_srcdir}\"
|
SetOutPath $ChosenInstallDir
|
||||||
File /a "${frontend_srcdir}\${interface_icon}"
|
File /r /x assignment-client.* /x domain-server.* /x interface.* /x stack-manager.* "${installer_srcdir}\"
|
||||||
SectionEnd
|
SectionEnd
|
||||||
|
|
||||||
Section "Stack Manager Bundle" SEC04
|
Section "HighFidelity Interface" "CLIENT"
|
||||||
SetOutPath $ChosenBackEndInstallDir
|
SetOutPath $ChosenInstallDir
|
||||||
File /r "${backend_srcdir}\"
|
File /a "${installer_srcdir}\interface.*"
|
||||||
File /a "${backend_srcdir}\${stack_manager_icon}"
|
File /a "${installer_srcdir}\${interface_icon}"
|
||||||
SectionEnd
|
SectionEnd
|
||||||
|
|
||||||
Section "Start Menu Shortcuts" SEC05
|
Section "HighFidelity Server" "SERVER"
|
||||||
|
SetOutPath $ChosenInstallDir
|
||||||
|
File /a "${installer_srcdir}\stack-manager.*"
|
||||||
|
File /a "${installer_srcdir}\domain-server.*"
|
||||||
|
File /a "${installer_srcdir}\assignment-client.*"
|
||||||
|
File /a "${installer_srcdir}\${stack_manager_icon}"
|
||||||
|
SectionEnd
|
||||||
|
|
||||||
|
Section "Start Menu Shortcuts" "SHORTCUTS"
|
||||||
SetShellVarContext all
|
SetShellVarContext all
|
||||||
CreateDirectory "${startmenu_company}"
|
CreateDirectory "${startmenu_company}"
|
||||||
SetOutPath $ChosenFrontEndInstallDir
|
SetOutPath $ChosenInstallDir
|
||||||
CreateShortCut "${startmenu_company}\Interface.lnk" "$ChosenFrontEndInstallDir\${interface_exec}" "" "$ChosenFrontEndInstallDir\${interface_icon}"
|
CreateShortCut "${startmenu_company}\Client.lnk" "$ChosenInstallDir\${interface_exec}" "" "$ChosenInstallDir\${interface_icon}"
|
||||||
CreateShortCut "${startmenu_company}\Stack Manager.lnk" "$ChosenBackEndInstallDir\${stack_manager_exec}" "" "$ChosenBackEndInstallDir\${stack_manager_icon}"
|
CreateShortCut "${startmenu_company}\Home Server.lnk" "$ChosenInstallDir\${stack_manager_exec}" "" "$ChosenInstallDir\${stack_manager_icon}"
|
||||||
CreateShortCut "${startmenu_company}\Uninstall ${company}.lnk" "$ChosenFrontEndInstallDir\${uninstaller}"
|
CreateShortCut "${startmenu_company}\Uninstall ${company}.lnk" "$ChosenInstallDir\${uninstaller}"
|
||||||
SectionEnd
|
SectionEnd
|
||||||
|
|
||||||
Section "Uninstall"
|
Section "Uninstall"
|
||||||
SetRegView 64
|
SetRegView 64
|
||||||
ReadRegStr $0 HKLM "${regkey}" "Backend_Install_Dir"
|
|
||||||
Delete "$INSTDIR\${uninstaller}"
|
Delete "$INSTDIR\${uninstaller}"
|
||||||
|
Delete "$SMSTARTUP\High Fidelity Home Server.lnk"
|
||||||
RMDir /r "$INSTDIR"
|
RMDir /r "$INSTDIR"
|
||||||
RMDir /r "${startmenu_company}"
|
RMDir /r "${startmenu_company}"
|
||||||
RMDir /r "$0"
|
RMDir /r "$0"
|
||||||
|
@ -133,19 +136,39 @@ SectionEnd
|
||||||
; Functions
|
; Functions
|
||||||
|
|
||||||
Function .onInit
|
Function .onInit
|
||||||
StrCpy $ChosenFrontEndInstallDir "${frontend_instdir}"
|
StrCpy $ChosenInstallDir "${instdir}"
|
||||||
StrCpy $ChosenBackEndInstallDir "${backend_instdir}"
|
SectionSetText ${REGISTRY} ""
|
||||||
|
SectionSetText ${SHORTCUTS} ""
|
||||||
|
SectionSetText ${BASE} ""
|
||||||
FunctionEnd
|
FunctionEnd
|
||||||
|
|
||||||
Function isInterfaceSelected
|
var ServerCheckBox
|
||||||
${IfNot} ${SectionIsSelected} ${SEC03}
|
var ServerCheckBox_state
|
||||||
Abort
|
var RunOnStartupCheckBox
|
||||||
|
var RunOnStartupCheckBox_state
|
||||||
|
|
||||||
|
Function RunCheckboxes
|
||||||
|
${If} ${SectionIsSelected} ${SERVER}
|
||||||
|
${NSD_CreateCheckbox} 36.2% 56% 100% 10u "&Start Home Server"
|
||||||
|
Pop $ServerCheckBox
|
||||||
|
SetCtlColors $ServerCheckBox "" "ffffff"
|
||||||
|
${NSD_CreateCheckbox} 36.2% 65% 100% 10u "&Always launch your Home Server on startup"
|
||||||
|
Pop $RunOnStartupCheckBox
|
||||||
|
SetCtlColors $RunOnStartupCheckBox "" "ffffff"
|
||||||
${EndIf}
|
${EndIf}
|
||||||
FunctionEnd
|
FunctionEnd
|
||||||
|
|
||||||
Function isStackManagerSelected
|
Function HandleCheckBoxes
|
||||||
${IfNot} ${SectionIsSelected} ${SEC04}
|
${If} ${SectionIsSelected} ${SERVER}
|
||||||
Abort
|
${NSD_GetState} $ServerCheckBox $ServerCheckBox_state
|
||||||
|
${If} $ServerCheckBox_state == ${BST_CHECKED}
|
||||||
|
SetOutPath $ChosenInstallDir
|
||||||
|
ExecShell "" '"$ChosenInstallDir\stack-manager.exe"'
|
||||||
|
${EndIf}
|
||||||
|
${NSD_GetState} $RunOnStartupCheckBox $RunOnStartupCheckBox_state
|
||||||
|
${If} $ServerCheckBox_state == ${BST_CHECKED}
|
||||||
|
CreateShortCut "$SMSTARTUP\High Fidelity Home Server.lnk" "$ChosenInstallDir\${stack_manager_exec}" "" "$ChosenInstallDir\${stack_manager_icon}"
|
||||||
|
${EndIf}
|
||||||
${EndIf}
|
${EndIf}
|
||||||
FunctionEnd
|
FunctionEnd
|
||||||
|
|
||||||
|
@ -154,40 +177,36 @@ FunctionEnd
|
||||||
|
|
||||||
!define MUI_WELCOMEFINISHPAGE_BITMAP "installer_vertical.bmp"
|
!define MUI_WELCOMEFINISHPAGE_BITMAP "installer_vertical.bmp"
|
||||||
!define MUI_WELCOMEPAGE_TITLE "High Fidelity - Integrated Installer"
|
!define MUI_WELCOMEPAGE_TITLE "High Fidelity - Integrated Installer"
|
||||||
!define MUI_WELCOMEPAGE_TEXT "Welcome to High Fidelity! This installer includes both the Interface client for VR access as well as the Stack Manager and required server components for you to host your own domain in the metaverse."
|
!define MUI_WELCOMEPAGE_TEXT "Welcome to High Fidelity! This installer includes both High Fidelity Interface for VR access as well as the High Fidelity Server for you to host your own domain in the metaverse."
|
||||||
!insertmacro MUI_PAGE_WELCOME
|
!insertmacro MUI_PAGE_WELCOME
|
||||||
|
|
||||||
!define MUI_PAGE_HEADER_TEXT "Please select the components you want to install"
|
!define MUI_PAGE_HEADER_TEXT "Please select the components you want to install"
|
||||||
!define MUI_COMPONENTSPAGE_TEXT_DESCRIPTION_INFO "Hover over a component for a brief description"
|
!define MUI_COMPONENTSPAGE_TEXT_DESCRIPTION_INFO "Hover over a component for a brief description"
|
||||||
!insertmacro MUI_PAGE_COMPONENTS
|
!insertmacro MUI_PAGE_COMPONENTS
|
||||||
|
|
||||||
!define MUI_PAGE_CUSTOMFUNCTION_PRE isInterfaceSelected
|
!define MUI_DIRECTORYPAGE_VARIABLE $ChosenInstallDir
|
||||||
!define MUI_DIRECTORYPAGE_VARIABLE $ChosenFrontEndInstallDir
|
!define MUI_PAGE_HEADER_TEXT "High Fidelity"
|
||||||
!define MUI_PAGE_HEADER_TEXT "Interface client"
|
|
||||||
!define MUI_PAGE_HEADER_SUBTEXT ""
|
!define MUI_PAGE_HEADER_SUBTEXT ""
|
||||||
!define MUI_DIRECTORYPAGE_TEXT_TOP "Choose a location to install the High Fidelity Interface client. You will use the Interface client to connect to domains in the metaverse."
|
!define MUI_DIRECTORYPAGE_TEXT_TOP "Choose a location for your High Fidelity installation."
|
||||||
!define MUI_DIRECTORYPAGE_TEXT_DESTINATION "Install Directory"
|
!define MUI_DIRECTORYPAGE_TEXT_DESTINATION "Install Directory"
|
||||||
!insertmacro MUI_PAGE_DIRECTORY
|
!insertmacro MUI_PAGE_DIRECTORY
|
||||||
|
|
||||||
!define MUI_PAGE_CUSTOMFUNCTION_PRE isStackManagerSelected
|
|
||||||
!define MUI_DIRECTORYPAGE_VARIABLE $ChosenBackEndInstallDir
|
|
||||||
!define MUI_PAGE_HEADER_TEXT "Stack Manager"
|
|
||||||
!define MUI_PAGE_HEADER_SUBTEXT ""
|
|
||||||
!define MUI_DIRECTORYPAGE_TEXT_TOP "Choose a location to install the High Fidelity Stack Manager bundle, including back end components. NOTE: If you change the default path, make sure you're selecting an unprivileged location, otherwise you will be forced to run the application as administrator for correct functioning."
|
|
||||||
!define MUI_DIRECTORYPAGE_TEXT_DESTINATION "Install Directory - must be writable"
|
|
||||||
!insertmacro MUI_PAGE_DIRECTORY
|
|
||||||
|
|
||||||
!insertmacro MUI_PAGE_INSTFILES
|
!insertmacro MUI_PAGE_INSTFILES
|
||||||
|
|
||||||
!insertmacro MUI_UNPAGE_CONFIRM
|
!insertmacro MUI_UNPAGE_CONFIRM
|
||||||
!insertmacro MUI_UNPAGE_INSTFILES
|
!insertmacro MUI_UNPAGE_INSTFILES
|
||||||
|
|
||||||
|
!define MUI_PAGE_CUSTOMFUNCTION_SHOW RunCheckboxes
|
||||||
|
!define MUI_PAGE_CUSTOMFUNCTION_LEAVE HandleCheckboxes
|
||||||
|
!define MUI_FINISHPAGE_RUN_NOTCHECKED
|
||||||
|
!define MUI_FINISHPAGE_RUN "$ChosenInstallDir\interface.exe"
|
||||||
|
!define MUI_FINISHPAGE_RUN_TEXT "Start High Fidelity Interface"
|
||||||
|
!insertmacro MUI_PAGE_FINISH
|
||||||
|
|
||||||
!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
|
!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
|
||||||
!insertmacro MUI_DESCRIPTION_TEXT ${SEC01} "DDE enables facial gesture recognition using a standard 2D webcam"
|
!insertmacro MUI_DESCRIPTION_TEXT ${DDE} "DDE enables facial gesture recognition using a standard 2D webcam"
|
||||||
!insertmacro MUI_DESCRIPTION_TEXT ${SEC02} "Registry entries are required by the system, we will also add a hifi:// protocol handler"
|
!insertmacro MUI_DESCRIPTION_TEXT ${CLIENT} "The High Fidelity Interface Client for connection to domains in the metaverse."
|
||||||
!insertmacro MUI_DESCRIPTION_TEXT ${SEC03} "Interface is the GUI client to access domains running the High Fidelity VR stack"
|
!insertmacro MUI_DESCRIPTION_TEXT ${SERVER} "The High Fidelity Server - run your own home domain"
|
||||||
!insertmacro MUI_DESCRIPTION_TEXT ${SEC04} "The Stack Manager allows you to run a domain of your own and connect it to the High Fidelity metaverse"
|
|
||||||
!insertmacro MUI_DESCRIPTION_TEXT ${SEC05} "Adds a program group and shortcuts to the Start Menu"
|
|
||||||
!insertmacro MUI_FUNCTION_DESCRIPTION_END
|
!insertmacro MUI_FUNCTION_DESCRIPTION_END
|
||||||
|
|
||||||
!insertmacro MUI_LANGUAGE "English"
|
!insertmacro MUI_LANGUAGE "English"
|
Loading…
Reference in a new issue