1
0
forked from Mirror/wren

Merge pull request #546 from mathewmariani/master

Fixed PreBuildEvents on vs2017
This commit is contained in:
Bob Nystrom
2018-07-15 11:08:21 -07:00
committed by GitHub
2 changed files with 9 additions and 9 deletions

View File

@ -47,7 +47,7 @@ def build_libuv_linux(arch):
def build_libuv_windows(arch):
args = ["cmd", "/c", "vcbuild.bat", "release"]
args = ["cmd", "/c", "vcbuild.bat", "release", "vs2017"]
if arch == "-32":
args.append("x86")
elif arch == "-64":

View File

@ -111,8 +111,8 @@
<EntryPointSymbol>mainCRTStartup</EntryPointSymbol>
</Link>
<PreBuildEvent>
<Command>python ../../libuv.py download
python ../../libuv.py build -32</Command>
<Command>python ../../update_deps.py
python ../../build_libuv.py -32</Command>
</PreBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
@ -133,8 +133,8 @@ python ../../libuv.py build -32</Command>
<EntryPointSymbol>mainCRTStartup</EntryPointSymbol>
</Link>
<PreBuildEvent>
<Command>python ../../libuv.py download
python ../../libuv.py build -64</Command>
<Command>python ../../update_deps.py
python ../../build_libuv.py -64</Command>
</PreBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
@ -159,8 +159,8 @@ python ../../libuv.py build -64</Command>
<EntryPointSymbol>mainCRTStartup</EntryPointSymbol>
</Link>
<PreBuildEvent>
<Command>python ../../libuv.py download
python ../../libuv.py build -32</Command>
<Command>python ../../update_deps.py
python ../../build_libuv.py -32</Command>
</PreBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
@ -185,8 +185,8 @@ python ../../libuv.py build -32</Command>
<EntryPointSymbol>mainCRTStartup</EntryPointSymbol>
</Link>
<PreBuildEvent>
<Command>python ../../libuv.py download
python ../../libuv.py build -64</Command>
<Command>python ../../update_deps.py
python ../../build_libuv.py -64</Command>
</PreBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>