diff options
author | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2023-02-15 17:58:14 -0800 |
---|---|---|
committer | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2023-03-20 14:56:32 -0700 |
commit | 656bfd36f607579021a4eaa0893350640b6a3882 (patch) | |
tree | 5b1e63784365bee977c1abd7b28922bc57f36ad5 /program_info/win_install.nsi.in | |
parent | 562ae676a5467611c86d04d1da4124df242c8194 (diff) | |
download | PrismLauncher-656bfd36f607579021a4eaa0893350640b6a3882.tar.gz PrismLauncher-656bfd36f607579021a4eaa0893350640b6a3882.tar.bz2 PrismLauncher-656bfd36f607579021a4eaa0893350640b6a3882.zip |
fix: ensure filelink.exe is included in setup.exe
Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
Diffstat (limited to 'program_info/win_install.nsi.in')
-rw-r--r-- | program_info/win_install.nsi.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/program_info/win_install.nsi.in b/program_info/win_install.nsi.in index 49e22500..f8918c58 100644 --- a/program_info/win_install.nsi.in +++ b/program_info/win_install.nsi.in @@ -281,6 +281,7 @@ Section "@Launcher_DisplayName@" SetOutPath $INSTDIR File "@Launcher_APP_BINARY_NAME@.exe" + File "@Launcher_APP_BINARY_NAME@_filelink.exe" File "qt.conf" File *.dll File /r "iconengines" @@ -361,6 +362,7 @@ Section "Uninstall" DeleteRegKey HKCU SOFTWARE\@Launcher_CommonName@ Delete $INSTDIR\@Launcher_APP_BINARY_NAME@.exe + Delete $INSTDIR\@Launcher_APP_BINARY_NAME@_filelink.exe Delete $INSTDIR\qt.conf Delete $INSTDIR\*.dll |