diff --git a/conanfile.py b/conanfile.py index 42a6635a..07c9b4a2 100644 --- a/conanfile.py +++ b/conanfile.py @@ -11,11 +11,14 @@ class EEUQ(ConanFile): settings = "os", "compiler", "build_type", "arch" generators = "qmake" requires = "jansson/2.13.1", \ - "libcurl/7.72.0", \ "zlib/1.2.11" build_policy = "missing" + def requirements(self): + if self.settings.os != "Linux": + self.requires("libcurl/7.72.0") + def configure(self): if self.settings.os == "Windows": self.options["lapack"].visual_studio = True