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:
parent
9154edaee1
commit
8adf6731e7
|
@ -24,18 +24,10 @@ 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
|
||||
File /r input/*
|
||||
|
||||
# Install the plugins
|
||||
SetOutPath $INSTDIR\lib\dino\plugins
|
||||
File input/plugins/*
|
||||
|
||||
# define uninstaller name
|
||||
WriteUninstaller $INSTDIR\uninstaller.exe
|
||||
|
||||
|
|
Loading…
Reference in a new issue