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,17 +24,9 @@ InstallDir $PROGRAMFILES64\dino
|
||||||
# default section start
|
# default section start
|
||||||
Section
|
Section
|
||||||
|
|
||||||
# Install binary and DLLs
|
# Install all files
|
||||||
SetOutPath $INSTDIR\bin
|
|
||||||
File input/*.dll input/dino.exe
|
|
||||||
|
|
||||||
# Install the libs and shared files
|
|
||||||
SetOutPath $INSTDIR
|
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
|
# define uninstaller name
|
||||||
WriteUninstaller $INSTDIR\uninstaller.exe
|
WriteUninstaller $INSTDIR\uninstaller.exe
|
||||||
|
|
Loading…
Reference in a new issue