Skip to content

Commit

Permalink
updated MSBuild
Browse files Browse the repository at this point in the history
  • Loading branch information
Roberto De Ioris committed Sep 4, 2017
1 parent 337e4c6 commit 025fd77
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/release_win64.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ def msbuild(project, python_version, variant):
base_environ.update({'PYTHONHOME': python_version})
if variant == 'threaded_':
base_environ.update({'UEP_ENABLE_THREADS': '1'})
vs = '"C:/Program Files (x86)/MSBuild/14.0/Bin/MSBuild.exe"'
#vs = '"C:/Program Files (x86)/MSBuild/14.0/Bin/MSBuild.exe"'
vs = '"C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/MSBuild/15.0/Bin/MSBuild.exe"'
process = subprocess.Popen('{0} {1} /m /t:Rebuild /p:Configuration="Development Editor" /p:Platform=Win64'.format(vs, project), env=base_environ)
while process.poll() is None:
time.sleep(0.5)
Expand Down

0 comments on commit 025fd77

Please sign in to comment.