vs.py (scons-4.2.0) | : | vs.py (SCons-4.3.0) | ||
---|---|---|---|---|
skipping to change at line 200 | skipping to change at line 200 | |||
# the contrary, this means we should list versions from most recent | # the contrary, this means we should list versions from most recent | |||
# to oldest. Pro versions get listed before Express versions on the | # to oldest. Pro versions get listed before Express versions on the | |||
# assumption that, by default, you'd rather use the version you paid | # assumption that, by default, you'd rather use the version you paid | |||
# good money for in preference to whatever Microsoft makes available | # good money for in preference to whatever Microsoft makes available | |||
# for free. | # for free. | |||
# | # | |||
# If you update this list, update _VCVER and _VCVER_TO_PRODUCT_DIR in | # If you update this list, update _VCVER and _VCVER_TO_PRODUCT_DIR in | |||
# Tool/MSCommon/vc.py, and the MSVC_VERSION documentation in Tool/msvc.xml. | # Tool/MSCommon/vc.py, and the MSVC_VERSION documentation in Tool/msvc.xml. | |||
SupportedVSList = [ | SupportedVSList = [ | |||
# Visual Studio 2022 | ||||
VisualStudio('14.3', | ||||
vc_version='14.3', | ||||
sdk_version='10.0A', | ||||
hkeys=[], | ||||
common_tools_var='VS170COMNTOOLS', | ||||
executable_path=r'Common7\IDE\devenv.com', | ||||
# should be a fallback, prefer use vswhere installationPath | ||||
batch_file_path=r'Common7\Tools\VsDevCmd.bat', | ||||
supported_arch=['x86', 'amd64', "arm"], | ||||
), | ||||
# Visual Studio 2019 | # Visual Studio 2019 | |||
VisualStudio('14.2', | VisualStudio('14.2', | |||
vc_version='14.2', | vc_version='14.2', | |||
sdk_version='10.0A', | sdk_version='10.0A', | |||
hkeys=[], | hkeys=[], | |||
common_tools_var='VS160COMNTOOLS', | common_tools_var='VS160COMNTOOLS', | |||
executable_path=r'Common7\IDE\devenv.com', | executable_path=r'Common7\IDE\devenv.com', | |||
# should be a fallback, prefer use vswhere installationPath | # should be a fallback, prefer use vswhere installationPath | |||
batch_file_path=r'Common7\Tools\VsDevCmd.bat', | batch_file_path=r'Common7\Tools\VsDevCmd.bat', | |||
supported_arch=['x86', 'amd64', "arm"], | supported_arch=['x86', 'amd64', "arm"], | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 12 lines changed or added |