Skip to content

Commit

Permalink
update options
Browse files Browse the repository at this point in the history
  • Loading branch information
jkotan committed Nov 7, 2024
1 parent a7c3e84 commit e0dde9a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ class H5CppConan(ConanFile):
settings = "os", "compiler", "build_type", "arch"
generators = "CMakeToolchain", "CMakeDeps"
options = {
"&:shared": [True, False],
"shared": [True, False],
"fPIC": [True, False],
"&:with_mpi": [True, False],
"&:with_boost": [True, False],
"&:install_prefix": [None, "ANY"]
"with_mpi": [True, False],
"with_boost": [True, False],
"install_prefix": [None, "ANY"]
}
default_options = {
"&:shared": False,
Expand Down

0 comments on commit e0dde9a

Please sign in to comment.