Skip to content

Commit

Permalink
pagmo2: transitive_headers=True
Browse files Browse the repository at this point in the history
  • Loading branch information
valgur committed Oct 28, 2023
1 parent c471e7c commit 2749d69
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions recipes/pagmo2/pre_2.11/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ def layout(self):
cmake_layout(self, src_folder="src")

def requirements(self):
self.requires("boost/1.83.0")
self.requires("boost/1.83.0", transitive_headers=True)
self.requires("onetbb/2021.10.0")
if self.options.with_eigen:
self.requires("eigen/3.4.0")
self.requires("eigen/3.4.0", transitive_headers=True)
if self.options.with_nlopt:
self.requires("nlopt/2.7.1")
self.requires("nlopt/2.7.1", transitive_headers=True, transitive_libs=True)

def package_id(self):
self.info.settings.clear()
Expand Down

0 comments on commit 2749d69

Please sign in to comment.