Skip to content

Commit 53553d5

Browse files
authored
Update conanfile.py
1 parent 7228c74 commit 53553d5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

conanfile.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,10 @@ def _grpc_requires(self):
5656
return 'grpc/[>=1.48.4]'
5757

5858
def requirements(self):
59-
self.requires('boost/[>=1.74.0 <1.88.0]', transitive_headers=True)
59+
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)
6063

6164
# The SDK supports older grpc and protobuf, but these are the oldest
6265
# maintained conan packages.

0 commit comments

Comments
 (0)