(#25649) bimg: add msvc version 194

This commit is contained in:
Dannie Sim
2024-10-18 12:31:18 +01:00
committed by GitHub
parent a5e1a80b11
commit 10a36851ef

View File

@ -130,7 +130,7 @@ class bimgConan(ConanFile):
if is_msvc(self): if is_msvc(self):
# Conan to Genie translation maps # Conan to Genie translation maps
vs_ver_to_genie = {"17": "2022", "16": "2019", "15": "2017", vs_ver_to_genie = {"17": "2022", "16": "2019", "15": "2017",
"193": "2022", "192": "2019", "191": "2017"} "194": "2022", "193": "2022", "192": "2019", "191": "2017"}
# Use genie directly, then msbuild on specific projects based on requirements # Use genie directly, then msbuild on specific projects based on requirements
genie_VS = f"vs{vs_ver_to_genie[str(self.settings.compiler.version)]}" genie_VS = f"vs{vs_ver_to_genie[str(self.settings.compiler.version)]}"