2011-02-28 18:59:32 +01:00
|
|
|
@echo off
|
2011-08-15 05:39:26 +02:00
|
|
|
set PATH=%PATH%;%PROGRAMW6432%\7-Zip;c:\mozilla-build\gendef
|
|
|
|
|
2011-02-28 18:59:32 +01:00
|
|
|
cd ..\dep-x64
|
2011-08-15 01:56:33 +02:00
|
|
|
7z x -y *.rpm
|
|
|
|
7z x *.cpio
|
|
|
|
del *.cpio
|
|
|
|
xcopy /q /s /i usr\x86_64-w64-mingw32\sys-root\mingw\* .
|
|
|
|
rmdir /q /s usr
|
|
|
|
set OPATH=%PATH%
|
2011-08-15 05:39:26 +02:00
|
|
|
set PATH=%PATH%;c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\amd64
|
|
|
|
cd lib
|
|
|
|
for %%A in (..\bin\*.dll) do (
|
|
|
|
gendef %%A
|
|
|
|
lib /nologo /machine:x64 /def:%%~nA.def
|
|
|
|
)
|
|
|
|
cd ..
|
2011-08-15 01:56:33 +02:00
|
|
|
set PATH=%OPATH%
|
2011-02-28 18:59:32 +01:00
|
|
|
7z x *.7z
|
2011-08-15 01:56:33 +02:00
|
|
|
copy /y ..\build\glibconfig-x64.h lib\glib-2.0\include\glibconfig.h
|
2011-08-15 05:39:26 +02:00
|
|
|
|
2011-02-28 18:59:32 +01:00
|
|
|
cd ..\dep-x86
|
2011-08-14 23:39:03 +02:00
|
|
|
7z x -y *.rpm
|
|
|
|
7z x *.cpio
|
|
|
|
del *.cpio
|
|
|
|
xcopy /q /s /i usr\i686-w64-mingw32\sys-root\mingw\* .
|
|
|
|
rmdir /q /s usr
|
2011-08-15 00:51:11 +02:00
|
|
|
set OPATH=%PATH%
|
2011-08-15 05:39:26 +02:00
|
|
|
set PATH=%PATH%;c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin;c:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE
|
|
|
|
cd lib
|
|
|
|
for %%A in (..\bin\*.dll) do (
|
|
|
|
gendef ..\bin\%%A
|
|
|
|
lib /nologo /machine:x86 /def:%%~nA.def
|
|
|
|
)
|
|
|
|
cd ..
|
2011-08-15 00:51:11 +02:00
|
|
|
set PATH=%OPATH%
|
2011-02-28 18:59:32 +01:00
|
|
|
7z x *.7z
|
2011-08-15 01:34:44 +02:00
|
|
|
copy /y ..\build\glibconfig-x86.h lib\glib-2.0\include\glibconfig.h
|
2011-02-28 18:59:32 +01:00
|
|
|
pause
|