From cec43ff0f8780ff939546ba57f8a6f3a3ecaac24 Mon Sep 17 00:00:00 2001 From: Chris Mc Date: Fri, 10 Feb 2023 12:47:37 -0800 Subject: [PATCH] Apply suggestions from code review --- recipes/spix/all/conanfile.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/recipes/spix/all/conanfile.py b/recipes/spix/all/conanfile.py index bff961a8f475f..f8869d0cef04c 100644 --- a/recipes/spix/all/conanfile.py +++ b/recipes/spix/all/conanfile.py @@ -36,6 +36,7 @@ def _compilers_minimum_version(self): if self.version == "0.4": return { "Visual Studio": "14", + "msvc": "190", "gcc": "5", "clang": "3.4", "apple-clang": "10" @@ -43,6 +44,7 @@ def _compilers_minimum_version(self): else: return { "Visual Studio": "15.7", + "msvc": "192" # FIXME: 15.7 is actually 1914 but needs to be tested "gcc": "7", "clang": "5", "apple-clang": "10",