Skip to content

Commit

Permalink
Improve v1 check
Browse files Browse the repository at this point in the history
  • Loading branch information
AbrilRBS committed Apr 26, 2024
1 parent 8519c8f commit 30125a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipes/dispenso/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def generate(self):
# TODO: Missing $<$<NOT:$<CXX_COMPILER_ID:MSVC>>:-fvisibility=hidden> equivalent?
tc.preprocessor_definitions["NOMINMAX"] = 1
tc.variables["CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS"] = 1
if not valid_min_cppstd(self, self._min_cppstd):
if self.settings.get_safe("compiler.cppstd") is None:
# TODO: Remove once Conan 1 is deprecated, this is needed so apple-clang
# can compile, as it defaults to C++98
tc.variables["CMAKE_CXX_STANDARD"] = self._min_cppstd
Expand Down

0 comments on commit 30125a5

Please sign in to comment.