Left: | ||
Right: |
OLD | NEW |
---|---|
1 @echo off | 1 @echo off |
2 | 2 |
3 set version=%1 | 3 set version=%1 |
4 set type=%2 | 4 set type=%2 |
5 if "%type%"=="" set type=devbuild | 5 if "%type%"=="" set type=devbuild |
6 | 6 |
7 pushd %~dp0 | 7 pushd %~dp0 |
8 | |
9 python ensure_dependencies.py | |
sergei
2015/06/30 09:51:06
It means that git users won't be able even to gene
Eric
2015/07/01 16:58:27
The way this is written, it means mandatory networ
Felix Dahlke
2015/07/02 10:02:06
While I agree that this is not too straightforward
Eric
2015/07/04 16:46:46
OK. That's not obvious from the code. (I didn't re
| |
10 | |
8 if NOT EXIST build\ia32\libadblockplus\shell\nul mkdir build\ia32\libadblockplus \shell | 11 if NOT EXIST build\ia32\libadblockplus\shell\nul mkdir build\ia32\libadblockplus \shell |
9 if NOT EXIST build\x64\libadblockplus\shell\nul mkdir build\x64\libadblockplus\s hell | 12 if NOT EXIST build\x64\libadblockplus\shell\nul mkdir build\x64\libadblockplus\s hell |
10 | 13 |
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 | 14 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 | 15 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 |
13 popd | 16 popd |
OLD | NEW |