Skip to content

Commit

Permalink
Remove dependencies options
Browse files Browse the repository at this point in the history
Options are now set in global profile, as recommended by conan
  • Loading branch information
wawanbreton committed Sep 19, 2024
1 parent 06aaec3 commit 1ab8f5a
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,17 +67,8 @@ def config_options(self):
del self.options.fPIC

def configure(self):
self.options["boost"].header_only = True

if self.options.shared:
self.options.rm_safe("fPIC")
self.options["grpc"].csharp_plugin = False
self.options["grpc"].node_plugin = False
self.options["grpc"].objective_c_plugin = False
self.options["grpc"].php_plugin = False
self.options["grpc"].ruby_plugin = False
self.options["grpc"].python_plugin = False
self.options["asio-grpc"].local_allocator = "recycling_allocator"

def layout(self):
cmake_layout(self)
Expand All @@ -98,9 +89,7 @@ def layout(self):

def requirements(self):
self.requires("protobuf/3.21.12", transitive_headers = True)
self.requires("boost/1.83.0")
self.requires("asio-grpc/2.9.2")
self.requires("grpc/1.54.3", transitive_headers = True)
self.requires("openssl/3.2.1")

def validate(self):
Expand Down

0 comments on commit 1ab8f5a

Please sign in to comment.