We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 847d1d0 commit 024a357Copy full SHA for 024a357
recipes/hdf5/all/conanfile.py
@@ -96,7 +96,8 @@ def validate(self):
96
raise ConanInvalidConfiguration("with_zlib and with_zlibng cannot be enabled at the same time")
97
if self.options.get_safe("with_zlibng") and Version(self.version) < "1.14.5":
98
raise ConanInvalidConfiguration("with_zlibng=True is incompatible with versions prior to v1.14.5")
99
- check_min_cppstd(self, "11")
+ if self.options.enable_cxx:
100
+ check_min_cppstd(self, "11")
101
102
def validate_build(self):
103
if cross_building(self) and Version(self.version) < "1.14.4.3":
0 commit comments