Skip to content

Commit

Permalink
djinni-support-lib: add -pthread
Browse files Browse the repository at this point in the history
  • Loading branch information
valgur committed Nov 3, 2023
1 parent 7ae9d8c commit f1f2714
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion recipes/djinni-support-lib/1.x.x/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
required_conan_version = ">=1.53.0"


class DjinniSuppotLib(ConanFile):
class DjinniSupportLib(ConanFile):
name = "djinni-support-lib"
description = "Djinni is a tool for generating cross-language type declarations and interface bindings"
license = "Apache-2.0"
Expand Down Expand Up @@ -171,3 +171,5 @@ def package(self):

def package_info(self):
self.cpp_info.libs = collect_libs(self)
if self.settings.os in ["Linux", "FreeBSD"]:
self.cpp_info.system_libs.append("pthread")

0 comments on commit f1f2714

Please sign in to comment.