diff options
Diffstat (limited to 'packaging/windows/setup.nsi')
-rw-r--r-- | packaging/windows/setup.nsi | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/packaging/windows/setup.nsi b/packaging/windows/setup.nsi index b1e504e5a..fdb415e0d 100644 --- a/packaging/windows/setup.nsi +++ b/packaging/windows/setup.nsi @@ -228,9 +228,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" @@ -279,6 +281,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" @@ -287,6 +292,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" |