Skip to content

Commit

Permalink
conanfile.py: add missing transitive_libs=True
Browse files Browse the repository at this point in the history
  • Loading branch information
valgur committed Oct 26, 2023
1 parent eaa9834 commit dc39b5f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ def layout(self):
cmake_layout(self)

def requirements(self):
self.requires("nlohmann_json/3.11.2", transitive_headers=True)
self.requires("spdlog/1.12.0", transitive_headers=True)
self.requires("gegles-spdlog_setup/1.1.0", transitive_headers=True)
self.requires("nlohmann_json/3.11.2", transitive_headers=True, transitive_libs=True)
self.requires("spdlog/1.12.0", transitive_headers=True, transitive_libs=True)
self.requires("gegles-spdlog_setup/1.1.0", transitive_headers=True, transitive_libs=True)
self.requires("fmt/10.1.1", override=True)

def validate(self):
Expand Down

0 comments on commit dc39b5f

Please sign in to comment.