diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-11-18 13:24:23 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-11-18 13:24:23 +0300 |
commit | a0fc90c20fb1a654e2c0106af9f47d1af2f3f29f (patch) | |
tree | 5ed71116fb8aae059e4b456274be15c0792d80a0 /packaging/windows | |
parent | 868514ac621b3ca5c0a9f924461e37164dc712ff (diff) | |
download | plus-a0fc90c20fb1a654e2c0106af9f47d1af2f3f29f.tar.gz plus-a0fc90c20fb1a654e2c0106af9f47d1af2f3f29f.tar.bz2 plus-a0fc90c20fb1a654e2c0106af9f47d1af2f3f29f.tar.xz plus-a0fc90c20fb1a654e2c0106af9f47d1af2f3f29f.zip |
Add missing themes to windows installer.
Diffstat (limited to 'packaging/windows')
-rw-r--r-- | packaging/windows/evol.nsi | 8 | ||||
-rw-r--r-- | packaging/windows/setup.nsi | 8 |
2 files changed, 16 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" 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" |