OLD | NEW |
1 @echo off | 1 @echo off |
2 | 2 |
| 3 set version=%1 |
| 4 set type=%2 |
| 5 if "%type%"=="" set type=devbuild |
| 6 |
3 pushd %~dp0 | 7 pushd %~dp0 |
4 python libadblockplus\msvs_gyp_wrapper.py --depth=build\ia32 -f msvs --generator
-output=build\ia32 -G msvs_version=2012 -Dtarget_arch=ia32 adblockplus.gyp | 8 if NOT EXIST build\ia32\libadblockplus\shell\nul mkdir build\ia32\libadblockplus
\shell |
5 python libadblockplus\msvs_gyp_wrapper.py --depth=build\x64 -f msvs --generator-
output=build\x64 -G msvs_version=2012 -Dtarget_arch=x64 adblockplus.gyp | 9 if NOT EXIST build\x64\libadblockplus\shell\nul mkdir build\x64\libadblockplus\s
hell |
| 10 |
| 11 python libadblockplus\msvs_gyp_wrapper.py --depth=build\ia32 -f msvs -I libadblo
ckplus\common.gypi --generator-output=build\ia32 -G msvs_version=2012 -Dtarget_a
rch=ia32 -Dbuild_type=%type% -Dbuild_version=%version% adblockplus.gyp |
| 12 python libadblockplus\msvs_gyp_wrapper.py --depth=build\x64 -f msvs -I libadbloc
kplus\common.gypi --generator-output=build\x64 -G msvs_version=2012 -Dtarget_arc
h=x64 -Dbuild_type=%type% -Dbuild_version=%version% adblockplus.gyp |
6 popd | 13 popd |
OLD | NEW |