2015-10-06 01:56:19 +02:00
|
|
|
;Include Modern UI
|
|
|
|
!include "MUI2.nsh"
|
|
|
|
|
|
|
|
; The name of the installer
|
|
|
|
Name "GPXSee"
|
|
|
|
|
|
|
|
; The file to write
|
|
|
|
OutFile "install.exe"
|
|
|
|
|
|
|
|
RequestExecutionLevel user
|
|
|
|
|
|
|
|
; The default installation directory
|
|
|
|
InstallDir "$LOCALAPPDATA\GPXSee"
|
|
|
|
|
|
|
|
; Registry key to check for directory (so if you install again, it will
|
|
|
|
; overwrite the old one automatically)
|
|
|
|
InstallDirRegKey HKCU "Software\GPXSee" "Install_Dir"
|
|
|
|
|
|
|
|
; Registry key for uninstaller
|
|
|
|
!define REGENTRY "Software\Microsoft\Windows\CurrentVersion\Uninstall\GPXSee"
|
|
|
|
|
|
|
|
; Start menu page configuration
|
|
|
|
!define MUI_STARTMENUPAGE_REGISTRY_ROOT "HKCU"
|
|
|
|
!define MUI_STARTMENUPAGE_REGISTRY_KEY "Software\GPXSee"
|
|
|
|
!define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "GPXSee"
|
|
|
|
|
|
|
|
Var StartMenuFolder
|
|
|
|
|
|
|
|
;--------------------------------
|
|
|
|
|
|
|
|
; Pages
|
|
|
|
|
|
|
|
!insertmacro MUI_PAGE_WELCOME
|
|
|
|
!insertmacro MUI_PAGE_LICENSE "licence.txt"
|
|
|
|
!insertmacro MUI_PAGE_COMPONENTS
|
|
|
|
!insertmacro MUI_PAGE_DIRECTORY
|
|
|
|
!insertmacro MUI_PAGE_STARTMENU Application $StartMenuFolder
|
|
|
|
!insertmacro MUI_PAGE_INSTFILES
|
|
|
|
|
|
|
|
!insertmacro MUI_UNPAGE_CONFIRM
|
|
|
|
!insertmacro MUI_UNPAGE_INSTFILES
|
|
|
|
|
|
|
|
;--------------------------------
|
|
|
|
|
|
|
|
; Languages
|
|
|
|
!insertmacro MUI_LANGUAGE "English"
|
|
|
|
|
|
|
|
|
|
|
|
; The stuff to install
|
|
|
|
Section "GPXSee (required)" SEC_APP
|
|
|
|
|
|
|
|
SectionIn RO
|
|
|
|
|
|
|
|
; Set output path to the installation directory.
|
|
|
|
SetOutPath $INSTDIR
|
|
|
|
|
|
|
|
; Put file there
|
|
|
|
File "gpxsee.exe"
|
|
|
|
|
|
|
|
; Write the installation path into the registry
|
|
|
|
WriteRegStr HKCU SOFTWARE\GPXSee "Install_Dir" "$INSTDIR"
|
|
|
|
|
|
|
|
; Write the uninstall keys for Windows
|
|
|
|
WriteRegStr HKCU "${REGENTRY}" "DisplayName" "GPXSee"
|
|
|
|
WriteRegStr HKCU "${REGENTRY}" "Publisher" "Martin Tuma"
|
2015-12-06 00:55:43 +01:00
|
|
|
WriteRegStr HKCU "${REGENTRY}" "DisplayVersion" "2.2"
|
2015-10-06 01:56:19 +02:00
|
|
|
WriteRegStr HKCU "${REGENTRY}" "UninstallString" '"$INSTDIR\uninstall.exe"'
|
|
|
|
WriteRegDWORD HKCU "${REGENTRY}" "NoModify" 1
|
|
|
|
WriteRegDWORD HKCU "${REGENTRY}" "NoRepair" 1
|
|
|
|
WriteUninstaller "$INSTDIR\uninstall.exe"
|
|
|
|
|
|
|
|
; Create start menu entry and add links
|
|
|
|
!insertmacro MUI_STARTMENU_WRITE_BEGIN Application
|
|
|
|
CreateDirectory "$SMPROGRAMS\$StartMenuFolder"
|
|
|
|
CreateShortCut "$SMPROGRAMS\$StartMenuFolder\Uninstall.lnk" "$INSTDIR\Uninstall.exe"
|
|
|
|
CreateShortCut "$SMPROGRAMS\$StartMenuFolder\GPXSee.lnk" "$INSTDIR\gpxsee.exe"
|
|
|
|
!insertmacro MUI_STARTMENU_WRITE_END
|
|
|
|
|
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section "QT libs" SEC_QT
|
|
|
|
|
|
|
|
File "Qt5Core.dll"
|
|
|
|
File "Qt5Gui.dll"
|
|
|
|
File "Qt5Widgets.dll"
|
|
|
|
File "Qt5PrintSupport.dll"
|
2015-11-25 23:18:07 +01:00
|
|
|
File "Qt5Network.dll"
|
2015-10-06 01:56:19 +02:00
|
|
|
File "libGLESv2.dll"
|
|
|
|
File /r "platforms"
|
2015-12-03 20:06:50 +01:00
|
|
|
File /r "imageformats"
|
2015-10-06 01:56:19 +02:00
|
|
|
|
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section "MSVC runtime" SEC_MSVC
|
|
|
|
|
|
|
|
File "msvcr100.dll"
|
|
|
|
File "msvcp100.dll"
|
|
|
|
|
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
;--------------------------------
|
|
|
|
|
|
|
|
; Uninstaller
|
|
|
|
|
|
|
|
Section "Uninstall"
|
|
|
|
|
|
|
|
; Remove registry keys
|
|
|
|
DeleteRegKey HKCU "${REGENTRY}"
|
|
|
|
DeleteRegKey HKCU SOFTWARE\GPXSee
|
|
|
|
|
|
|
|
; Remove directories used
|
|
|
|
RMDir /r "$INSTDIR"
|
|
|
|
|
|
|
|
; Remove Start menu entries
|
|
|
|
!insertmacro MUI_STARTMENU_GETFOLDER Application $StartMenuFolder
|
|
|
|
Delete "$SMPROGRAMS\$StartMenuFolder\*.*"
|
|
|
|
RMDir "$SMPROGRAMS\$StartMenuFolder"
|
|
|
|
|
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
;-------------------------------
|
|
|
|
|
|
|
|
;Descriptions
|
|
|
|
|
|
|
|
;Language strings
|
|
|
|
LangString DESC_QT ${LANG_ENGLISH} \
|
|
|
|
"QT Library. Unselct only if you have QT already installed!"
|
|
|
|
LangString DESC_MSVC ${LANG_ENGLISH} \
|
|
|
|
"Visual C++ 2010 runtime components. Unselct only if you have the runtime already installed!"
|
|
|
|
LangString DESC_APP ${LANG_ENGLISH} \
|
|
|
|
"GPXSee application"
|
|
|
|
|
|
|
|
;Assign language strings to sections
|
|
|
|
!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SEC_QT} $(DESC_QT)
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SEC_MSVC} $(DESC_MSVC)
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SEC_APP} $(DESC_APP)
|
|
|
|
!insertmacro MUI_FUNCTION_DESCRIPTION_END
|