Simplify installer script

The current build script already places the files in the right
folder structure so the installer doesn't have to do it itself
This commit is contained in:
Martin Dosch 2020-05-19 08:38:17 +02:00
parent 9154edaee1
commit 8adf6731e7

View file

@ -24,17 +24,9 @@ InstallDir $PROGRAMFILES64\dino
# default section start
Section
# Install binary and DLLs
SetOutPath $INSTDIR\bin
File input/*.dll input/dino.exe
# Install the libs and shared files
# Install all files
SetOutPath $INSTDIR
File /r input/lib input/share input/LICENSE input/logo.ico
# Install the plugins
SetOutPath $INSTDIR\lib\dino\plugins
File input/plugins/*
File /r input/*
# define uninstaller name
WriteUninstaller $INSTDIR\uninstaller.exe