Merge pull request #423 from AdenKoperczak/disable_compiletime_selection_of_certs

This commit is contained in:
Dan Paulat 2025-04-24 00:25:24 -05:00 committed by GitHub
commit b02dca5877
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -31,7 +31,9 @@ class SupercellWxConan(ConanFile):
if self.settings.os == "Windows":
self.options["libcurl"].with_ssl = "schannel"
elif self.settings.os == "Linux":
self.options["openssl"].shared = True
self.options["openssl"].shared = True
self.options["libcurl"].ca_bundle = "none"
self.options["libcurl"].ca_path = "none"
def requirements(self):
if self.settings.os == "Linux":