We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7228c74 commit 53553d5Copy full SHA for 53553d5
conanfile.py
@@ -56,7 +56,10 @@ def _grpc_requires(self):
56
return 'grpc/[>=1.48.4]'
57
58
def requirements(self):
59
- self.requires('boost/[>=1.74.0 <1.88.0]', transitive_headers=True)
+ if self.settings.os == "Windows":
60
+ self.requires('boost/[>=1.74.0 <1.88.0]', transitive_headers=True)
61
+ else:
62
+ self.requires('boost/[>=1.74.0]', transitive_headers=True)
63
64
# The SDK supports older grpc and protobuf, but these are the oldest
65
# maintained conan packages.
0 commit comments