Skip to content

Commit

Permalink
Use OpenSSL 3.2.0
Browse files Browse the repository at this point in the history
Contributes to CURA-10831 and CURA-11080
  • Loading branch information
jellespijker committed Dec 1, 2023
1 parent f022528 commit 3672b0b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,11 @@ def config_options(self):
def configure(self):
self.options["boost"].header_only = True
self.options["clipper"].shared = True

self.options["protobuf"].shared = False
if self.options.enable_arcus:
self.options["arcus"].shared = True
if self.settings.os == "Linux":
self.options["openssl"].shared = True

def validate(self):
if self.settings.compiler.get_safe("cppstd"):
Expand Down Expand Up @@ -100,7 +101,7 @@ def requirements(self):
self.requires("neargye-semver/0.3.0")
self.requires("protobuf/3.21.9")
self.requires("zlib/1.2.12")
self.requires("openssl/1.1.1l")
self.requires("openssl/3.2.0")

def generate(self):
deps = CMakeDeps(self)
Expand Down

0 comments on commit 3672b0b

Please sign in to comment.