Skip to content

Commit

Permalink
Allow openssl version range
Browse files Browse the repository at this point in the history
  • Loading branch information
Tereius committed Dec 20, 2024
1 parent 5eae758 commit 07656a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class LibonvifConan(ConanFile):
url = jsonInfo["repository"]
# ---Requirements---
requires = ["qt/[>=6.5.0]@%s/stable" % user]
tool_requires = ["cmake/[>=3.23.5]", "ninja/[>=1.11.1]", "qtappbase/1.1.0@%s/stable" % user]
tool_requires = ["cmake/[>=3.23.5]", "ninja/[>=1.11.1]", "qtappbase/[>=1.1.0]@%s/stable" % user]
# ---Sources---
exports = ["info.json", "LICENSE"]
exports_sources = ["info.json", "src/*", "doc/*", "CMake/*", "CMakeLists.txt"]
Expand All @@ -45,7 +45,7 @@ class LibonvifConan(ConanFile):

def requirements(self):
if self.options.openssl:
self.requires("openssl/3.0.15@%s/stable" % self.user)
self.requires("openssl/[>=3.0.15]@%s/stable" % self.user)

def configure(self):
if self.options.openssl:
Expand Down

0 comments on commit 07656a1

Please sign in to comment.