Skip to content

Commit

Permalink
(#11006) fix drogon boost requirement
Browse files Browse the repository at this point in the history
* fix drogon boost requirement

* fix drogon boost requirement
  • Loading branch information
paulocoutinhox authored Jun 1, 2022
1 parent 73732f1 commit e94a759
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion recipes/drogon/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ class DrogonConan(ConanFile):
options = {
"shared": [False, True],
"fPIC": [True, False],
"with_boost": [True, False],
"with_ctl": [True, False],
"with_orm": [True, False],
"with_profile": [True, False],
Expand All @@ -30,6 +31,7 @@ class DrogonConan(ConanFile):
default_options = {
"shared": False,
"fPIC": True,
"with_boost": True,
"with_ctl": False,
"with_orm": True,
"with_profile": False,
Expand Down Expand Up @@ -89,14 +91,15 @@ def validate(self):

def requirements(self):
self.requires("trantor/1.5.5")
self.requires("boost/1.79.0")
self.requires("jsoncpp/1.9.5")
self.requires("openssl/1.1.1o")
self.requires("zlib/1.2.12")
if self.settings.os == "Linux":
self.requires("libuuid/1.0.3")
if self.options.with_profile:
self.requires("coz/cci.20210322")
if self.options.with_boost:
self.requires("boost/1.79.0")
if self.options.with_brotli:
self.requires("brotli/1.0.9")
if self.options.get_safe("with_postgres"):
Expand Down

0 comments on commit e94a759

Please sign in to comment.