From 517013633d09efc120364fb3c23fdab43afc43be Mon Sep 17 00:00:00 2001 From: Dan Paulat Date: Mon, 6 Jan 2025 05:10:23 +0000 Subject: [PATCH] Use schannel with libcurl --- conanfile.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/conanfile.py b/conanfile.py index b150acc5..71137d47 100644 --- a/conanfile.py +++ b/conanfile.py @@ -29,6 +29,10 @@ class SupercellWxConan(ConanFile): "openssl/*:no_module": True, "openssl/*:shared" : True} + def configure(self): + if self.settings.os == "Windows": + self.options["libcurl"].with_ssl = "schannel" + def requirements(self): if self.settings.os == "Linux": self.requires("onetbb/2021.12.0")