Skip to content

Commit

Permalink
kealib: make sure CMAKE_CXX_STANDARD is set
Browse files Browse the repository at this point in the history
  • Loading branch information
valgur committed Nov 2, 2023
1 parent 24148d0 commit 7da79b3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions recipes/kealib/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ def generate(self):
tc.cache_variables["HDF5_USE_STATIC_LIBRARIES"] = not self.dependencies["hdf5"].options.shared
tc.cache_variables["HDF5_PREFER_PARALLEL"] = self.dependencies["hdf5"].options.parallel
tc.cache_variables["LIBKEA_WITH_GDAL"] = False
if not self.settings.compiler.cppstd:
tc.variables["CMAKE_CXX_STANDARD"] = 11
tc.generate()

tc = CMakeDeps(self)
Expand Down

0 comments on commit 7da79b3

Please sign in to comment.