Skip to content

Commit

Permalink
Merge pull request #8161 from njensen20/master
Browse files Browse the repository at this point in the history
Update Installer.nsi for Qt support
  • Loading branch information
stenzek committed Jun 29, 2019
2 parents 5433d1c + f03bd11 commit ac18ffb
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Installer/Installer.nsi
Expand Up @@ -140,6 +140,10 @@ Section "Base" SEC01
File "${BASE_DIR}\Dolphin.exe" File "${BASE_DIR}\Dolphin.exe"
File "${BASE_DIR}\license.txt" File "${BASE_DIR}\license.txt"
File "${BASE_DIR}\*.dll" File "${BASE_DIR}\*.dll"
File "${BASE_DIR}\DSPTool.exe"
File "${BASE_DIR}\Updater.exe"
File "${BASE_DIR}\qt.conf"
File /r "${BASE_DIR}\QtPlugins"
File /r "${BASE_DIR}\Languages" File /r "${BASE_DIR}\Languages"
File /r "${BASE_DIR}\Sys" File /r "${BASE_DIR}\Sys"


Expand Down Expand Up @@ -200,6 +204,9 @@ Section Uninstall
Delete "$INSTDIR\license.txt" Delete "$INSTDIR\license.txt"
Delete "$INSTDIR\*.dll" Delete "$INSTDIR\*.dll"
Delete "$INSTDIR\Dolphin.exe" Delete "$INSTDIR\Dolphin.exe"
Delete "$INSTDIR\qt.conf"
Delete "$INSTDIR\DSPTool.exe"
Delete "$INSTDIR\Updater.exe"


Delete "$SMPROGRAMS\${PRODUCT_NAME}\${UN_NAME}.lnk" Delete "$SMPROGRAMS\${PRODUCT_NAME}\${UN_NAME}.lnk"
Delete "$DESKTOP\${PRODUCT_NAME}.lnk" Delete "$DESKTOP\${PRODUCT_NAME}.lnk"
Expand All @@ -208,6 +215,7 @@ Section Uninstall
RMDir "$SMPROGRAMS\${PRODUCT_NAME}" RMDir "$SMPROGRAMS\${PRODUCT_NAME}"
RMDir /r "$INSTDIR\Sys" RMDir /r "$INSTDIR\Sys"
RMDir /r "$INSTDIR\Languages" RMDir /r "$INSTDIR\Languages"
RMDir /r "$INSTDIR\QtPlugins"
RMDir "$INSTDIR" RMDir "$INSTDIR"


DeleteRegKey ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" DeleteRegKey ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}"
Expand Down

0 comments on commit ac18ffb

Please sign in to comment.