mirror of
https://github.com/xenia-project/xenia.git
synced 2026-04-05 06:35:11 +00:00
Use vcvarsall in Xenia build script when available, VcDevCmd otherwise.
This commit is contained in:
parent
b594f97027
commit
3d56d6c46c
1 changed files with 6 additions and 2 deletions
|
|
@ -110,8 +110,12 @@ def import_vs_environment():
|
|||
vcvars_path = os.path.join(tools_path, '..\\..\\vc\\vcvarsall.bat')
|
||||
env_tool_args = [vcvars_path, 'x64', '&&', 'set']
|
||||
else:
|
||||
vsdevcmd_path = os.path.join(install_path, 'Common7\\Tools\\VsDevCmd.bat')
|
||||
env_tool_args = [vsdevcmd_path, '-arch=amd64', '-host_arch=amd64']
|
||||
vcvars_path = os.path.join(install_path, 'VC\\Auxiliary\\Build\\vcvarsall.bat')
|
||||
if os.path.isfile(vcvars_path) and os.access(vcvars_path, os.X_OK):
|
||||
env_tool_args = [vcvars_path, 'x64', '&&', 'set']
|
||||
else:
|
||||
vsdevcmd_path = os.path.join(install_path, 'Common7\\Tools\\VsDevCmd.bat')
|
||||
env_tool_args = [vsdevcmd_path, '-arch=amd64', '-host_arch=amd64']
|
||||
|
||||
if version == 0:
|
||||
return None
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue