diff options
author | Joseph Brill <48932340+jcbrill@users.noreply.github.com> | 2022-06-21 16:46:14 (GMT) |
---|---|---|
committer | Joseph Brill <48932340+jcbrill@users.noreply.github.com> | 2022-06-21 16:46:14 (GMT) |
commit | 7683a2f958287ceee257b0449eed767b0dd275e5 (patch) | |
tree | 18ffc206d09362d9b2dcf5bfb6a8db8f054f0ab4 /SCons/Tool | |
parent | 52e349c07058d6b7b2b5eb46ae6371427bee9849 (diff) | |
download | SCons-7683a2f958287ceee257b0449eed767b0dd275e5.zip SCons-7683a2f958287ceee257b0449eed767b0dd275e5.tar.gz SCons-7683a2f958287ceee257b0449eed767b0dd275e5.tar.bz2 |
Remove MSVC_TOOLSET_VERSION from intent to use msvc tools (attached to default version or specific version).
Diffstat (limited to 'SCons/Tool')
-rw-r--r-- | SCons/Tool/MSCommon/vc.py | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/SCons/Tool/MSCommon/vc.py b/SCons/Tool/MSCommon/vc.py index 7ea3583..675b8d0 100644 --- a/SCons/Tool/MSCommon/vc.py +++ b/SCons/Tool/MSCommon/vc.py @@ -1304,14 +1304,8 @@ def msvc_setup_env_user(env=None): # MSVC_USE_SCRIPT: defined and (is string or evaluates False) # MSVC_USE_SETTINGS: defined and is not None - # Arguments possibly present but not considered: - # MSVC_SDK_VERSION - # MSVC_UWP_APP - # MSVC_SPECTRE_LIBS - # MSVC_SCRIPT_ARGS - # defined and is True - for key in ['MSVC_VERSION', 'MSVS_VERSION', 'MSVC_TOOLSET_VERSION']: + for key in ['MSVC_VERSION', 'MSVS_VERSION']: if key in env and env[key]: rval = True debug('key=%s, return=%s', repr(key), rval) |