Skip to content

Commit

Permalink
Merge pull request #761 from robert-shade/openssl_system_libs
Browse files Browse the repository at this point in the history
openssl: Specify system_libs
  • Loading branch information
danimtb authored Feb 10, 2020
2 parents 2eadda1 + 2312498 commit 632c2d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions recipes/openssl/ALL/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -666,6 +666,6 @@ def package_info(self):
else:
self.cpp_info.libs = ["ssl", "crypto"]
if self.settings.os == "Windows":
self.cpp_info.libs.extend(["crypt32", "msi", "ws2_32", "advapi32", "user32", "gdi32"])
self.cpp_info.system_libs.extend(["crypt32", "msi", "ws2_32", "advapi32", "user32", "gdi32"])
elif self.settings.os == "Linux":
self.cpp_info.libs.extend(["dl", "pthread"])
self.cpp_info.system_libs.extend(["dl", "pthread"])

0 comments on commit 632c2d3

Please sign in to comment.