Skip to content

Commit

Permalink
Conan: Use transitive_libs=True for Boost
Browse files Browse the repository at this point in the history
  • Loading branch information
kyllingstad committed Feb 22, 2024
1 parent bce2132 commit 7865b23
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 @@ -43,9 +43,9 @@ def requirements(self):
self.requires("ms-gsl/[>=3 <5]", transitive_headers=True)
if self.options.proxyfmu:
self.requires("proxyfmu/0.3.2@osp/stable")
self.requires("boost/[~1.81]", transitive_headers=True) # Required by Thrift
self.requires("boost/[~1.81]", transitive_headers=True, transitive_libs=True) # Required by Thrift
else:
self.requires("boost/[>=1.71]", transitive_headers=True)
self.requires("boost/[>=1.71]", transitive_headers=True, transitive_libs=True)
self.requires("yaml-cpp/[~0.8]")
self.requires("xerces-c/[~3.2]")

Expand Down

0 comments on commit 7865b23

Please sign in to comment.