diff options
Diffstat (limited to 'packaging/windows/evol.nsi')
-rw-r--r-- | packaging/windows/evol.nsi | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/packaging/windows/evol.nsi b/packaging/windows/evol.nsi index fff7d563c..e265fa1a2 100644 --- a/packaging/windows/evol.nsi +++ b/packaging/windows/evol.nsi @@ -231,9 +231,11 @@ Section "Core files (required)" SecCore CreateDirectory "$INSTDIR\data\sfx" CreateDirectory "$INSTDIR\data\sfx\system" CreateDirectory "$INSTDIR\data\themes" + CreateDirectory "$INSTDIR\data\themes\blacknblack" CreateDirectory "$INSTDIR\data\themes\blackwood" CreateDirectory "$INSTDIR\data\themes\classic" CreateDirectory "$INSTDIR\data\themes\enchilado" + CreateDirectory "$INSTDIR\data\themes\jewelry" CreateDirectory "$INSTDIR\data\themes\mana" CreateDirectory "$INSTDIR\data\themes\pink" CreateDirectory "$INSTDIR\data\themes\unity" @@ -282,6 +284,9 @@ Section "Core files (required)" SecCore File "${SRCDIR}\data\graphics\sprites\*.xml" SetOutPath "$INSTDIR\data\sfx\system" File "${SRCDIR}\data\sfx\system\*.ogg" + SetOutPath "$INSTDIR\data\themes\blacknblack" + File "${SRCDIR}\data\themes\blacknblack\*.png" + File "${SRCDIR}\data\themes\blacknblack\*.xml" SetOutPath "$INSTDIR\data\themes\blackwood" File "${SRCDIR}\data\themes\blackwood\*.png" File "${SRCDIR}\data\themes\blackwood\*.xml" @@ -290,6 +295,9 @@ Section "Core files (required)" SecCore SetOutPath "$INSTDIR\data\themes\enchilado" File "${SRCDIR}\data\themes\enchilado\*.png" File "${SRCDIR}\data\themes\enchilado\*.xml" + SetOutPath "$INSTDIR\data\themes\jewelry" + File "${SRCDIR}\data\themes\jewelry\*.png" + File "${SRCDIR}\data\themes\jewelry\*.xml" SetOutPath "$INSTDIR\data\themes\pink" File "${SRCDIR}\data\themes\pink\*.png" File "${SRCDIR}\data\themes\pink\*.xml" |