summary refs log tree commit diff stats
path: root/win32/deps/expat/release-x64.bat
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2012-09-28 18:53:53 +0200
committerBerke Viktor <bviktor@hexchat.org>2012-09-28 18:53:53 +0200
commit50bf1b59593bf4d55c1d2964987c46b4aafc1868 (patch)
tree19a14c2e7da434f599fe8bf7f45ddc9d78e0390c /win32/deps/expat/release-x64.bat
parentf816bd4d715727f9b0617a46265fec26b41f0448 (diff)
Add Expat solution and release scripts
Diffstat (limited to 'win32/deps/expat/release-x64.bat')
-rw-r--r--win32/deps/expat/release-x64.bat39
1 files changed, 39 insertions, 0 deletions
diff --git a/win32/deps/expat/release-x64.bat b/win32/deps/expat/release-x64.bat
new file mode 100644
index 00000000..480229d4
--- /dev/null
+++ b/win32/deps/expat/release-x64.bat
@@ -0,0 +1,39 @@
+:: run this from a command prompt

+@echo off

+

+SET PACKAGE_NAME=expat-2.1.0

+

+set EXPAT_SRC=%cd%

+set EXPAT_DEST=%cd%-x64

+echo.Press return when ready to install!

+pause

+

+rmdir /q /s %EXPAT_DEST%

+mkdir %EXPAT_DEST%

+mkdir %EXPAT_DEST%\bin

+mkdir %EXPAT_DEST%\include

+mkdir %EXPAT_DEST%\lib

+copy win32\bin\Release\elements.exe %EXPAT_DEST%\bin

+copy win32\bin\Release\libexpat.dll %EXPAT_DEST%\bin

+copy win32\bin\Release\libexpatw.dll %EXPAT_DEST%\bin

+copy win32\bin\Release\outline.exe %EXPAT_DEST%\bin

+copy win32\bin\Release\xmlwf.exe %EXPAT_DEST%\bin

+copy lib\expat.h %EXPAT_DEST%\include

+copy lib\expat_external.h %EXPAT_DEST%\include

+copy win32\bin\Release\libexpat.exp %EXPAT_DEST%\lib

+copy win32\bin\Release\libexpat.lib %EXPAT_DEST%\lib

+copy win32\bin\Release\libexpatMT.lib %EXPAT_DEST%\lib

+copy win32\bin\Release\libexpatw.exp %EXPAT_DEST%\lib

+copy win32\bin\Release\libexpatw.lib %EXPAT_DEST%\lib

+copy win32\bin\Release\libexpatwMT.lib %EXPAT_DEST%\lib

+copy COPYING %EXPAT_DEST%\LICENSE.EXPAT

+

+cd %EXPAT_DEST%

+set PATH=%PATH%;%ProgramFiles%\7-zip

+del ..\%PACKAGE_NAME%-x64.7z

+7z a ..\%PACKAGE_NAME%-x64.7z *

+cd %EXPAT_SRC%

+rmdir /q /s %EXPAT_DEST%

+

+echo.Finished!

+pause