Left: | ||
Right: |
OLD | NEW |
---|---|
1 @echo off | 1 @echo off |
2 | 2 |
3 pushd %~dp0 | 3 pushd %~dp0 |
4 | |
5 python ensure_dependencies.py | |
6 | |
4 mkdir build\ia32\shell | 7 mkdir build\ia32\shell |
5 mkdir build\x64\shell | 8 mkdir build\x64\shell |
6 python msvs_gyp_wrapper.py --depth=build\ia32 -f msvs -I common.gypi --generator -output=build\ia32 -G msvs_version=2012 -Dtarget_arch=ia32 -Dhost_arch=ia32 liba dblockplus.gyp | 9 python msvs_gyp_wrapper.py --depth=build\ia32 -f msvs -I libadblockplus.gypi --g enerator-output=build\ia32 -G msvs_version=2015 -Dtarget_arch=ia32 -Dhost_arch=i a32 libadblockplus.gyp |
Eric
2017/05/30 17:31:40
Here's another version dependency. Is it actually
sergei
2017/05/31 12:47:11
It was already specified here and changing to a ne
sergei
2017/06/14 16:05:01
Without that flag it generates for Visual Studio 2
| |
7 python msvs_gyp_wrapper.py --depth=build\x64 -f msvs -I common.gypi --generator- output=build\x64 -G msvs_version=2012 -Dtarget_arch=x64 -Dhost_arch=x64 libadblo ckplus.gyp | 10 python msvs_gyp_wrapper.py --depth=build\x64 -f msvs -I libadblockplus.gypi --ge nerator-output=build\x64 -G msvs_version=2015 -Dtarget_arch=x64 -Dhost_arch=x64 libadblockplus.gyp |
8 popd | 11 popd |
OLD | NEW |