Skip to content

Commit

Permalink
add TODO about system requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
jgsogo committed Oct 31, 2019
1 parent a83cae0 commit 4b032b7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions recipes/libcurl/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,12 @@ def config_options(self):
if self.settings.os == "Windows":
self.options.remove("fPIC")

def system_requirements(self):
# TODO: Declare tools needed to compile. The idea is Conan checking that they are
# installed and providing a meaninful message before starting the compilation. It
# would be much better than installed them (sudo required).
pass

def requirements(self):
if self.options.with_openssl:
if self.settings.os == "Macos" and self.options.darwin_ssl:
Expand Down

0 comments on commit 4b032b7

Please sign in to comment.