diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-09-30 20:16:39 +0200 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-09-30 20:16:39 +0200 |
commit | f8c7152785b0d75612436132133c6f96882451ee (patch) | |
tree | 59e5ac2176d3200559884e86b620781150653128 /win32/deps/glib/release-x64.bat | |
parent | d168882a32462ed0a6c4f93549549973380e5356 (diff) |
Add GLib solution and release scripts
Diffstat (limited to 'win32/deps/glib/release-x64.bat')
-rw-r--r-- | win32/deps/glib/release-x64.bat | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/win32/deps/glib/release-x64.bat b/win32/deps/glib/release-x64.bat new file mode 100644 index 00000000..01b68d59 --- /dev/null +++ b/win32/deps/glib/release-x64.bat @@ -0,0 +1,21 @@ +:: run this from a command prompt +@echo off + +SET PACKAGE_NAME=glib-2.34.0 + +set GLIB_SRC=%cd% +set GLIB_DEST=%cd%-rel +echo.Press return when ready to install! +pause + +copy COPYING %GLIB_DEST%\LICENSE.GLIB + +cd %GLIB_DEST% +set PATH=%PATH%;%ProgramFiles%\7-zip +del ..\%PACKAGE_NAME%-x64.7z +7z a ..\%PACKAGE_NAME%-x64.7z * +cd %GLIB_SRC% +rmdir /q /s %GLIB_DEST% + +echo.Finished! +pause |