diff options
author | Ira Rice <irarice@gmail.com> | 2009-01-16 16:22:58 -0700 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-01-16 16:22:58 -0700 |
commit | 9fe5ab08903ba9902725b500f588afd9ed58f2da (patch) | |
tree | 6cbf80327eb4db86db551e52609586f9b4a056ef /packaging | |
parent | 96e52fbc4a48a141e4d4cb4a06249eb66ae38d2b (diff) | |
download | mana-9fe5ab08903ba9902725b500f588afd9ed58f2da.tar.gz mana-9fe5ab08903ba9902725b500f588afd9ed58f2da.tar.bz2 mana-9fe5ab08903ba9902725b500f588afd9ed58f2da.tar.xz mana-9fe5ab08903ba9902725b500f588afd9ed58f2da.zip |
Added po files to the windows install script.
Signed-off-by: Ira Rice <irarice@gmail.com>
Diffstat (limited to 'packaging')
-rw-r--r-- | packaging/windows/setup.nsi | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/packaging/windows/setup.nsi b/packaging/windows/setup.nsi index cd01486d..d37a5cce 100644 --- a/packaging/windows/setup.nsi +++ b/packaging/windows/setup.nsi @@ -9,7 +9,7 @@ SetCompressor /SOLID lzma ; HM NIS Edit helper defines !define PRODUCT_NAME "Aethyra" -!define PRODUCT_VERSION "0.0.27" +!define PRODUCT_VERSION "0.0.27.1" !define PRODUCT_PUBLISHER "Aethyra Development Team" !define PRODUCT_WEB_SITE "http://aethyra.org" !define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\aethyra.exe" @@ -155,6 +155,7 @@ Section "Core files (required)" SecCore CreateDirectory "$INSTDIR\data\graphics\gui" CreateDirectory "$INSTDIR\data\graphics\images" CreateDirectory "$INSTDIR\docs" + CreateDirectory "$INSTDIR\po" SetOverwrite ifnewer SetOutPath "$INSTDIR" @@ -178,6 +179,10 @@ Section "Core files (required)" SecCore File /nonfatal "${AETHYRAROOT}\data\music\*.ogg" SetOutPath "$INSTDIR\docs" File "${AETHYRAROOT}\docs\FAQ.txt" + SetOutPath "$INSTDIR\po" + File "${AETHYRAROOT}\po\aethyra.pot" + File "${AETHYRAROOT}\po\LINGUAS" + File "${AETHYRAROOT}\po\*.po" SectionEnd Section -AdditionalIcons |