Remove attrdict3 build dependency and use plain dict

This commit is contained in:
Edouard Choinière
2025-01-18 23:34:11 +00:00
parent 169aacfab6
commit e56e248767
3 changed files with 8 additions and 11 deletions

View File

@@ -75,7 +75,7 @@ def configure(conf):
# WAF uses the VisualStudio version to select the compiler, rather than
# the compiler version like we see elsewhere. Luckily we've got that
# value in the MSVC info.
msvc_version = f"msvc {info.vs_ver}"
msvc_version = f'msvc {info["vs_ver"]}'
conf.env['MSVC_VERSIONS'] = [msvc_version]
conf.env['MSVC_TARGETS'] = [conf.options.msvc_arch]