Disable compile time selection of certs on Linux. SSL cert location is not standardized

This commit is contained in:
AdenKoperczak 2025-04-22 13:58:00 -04:00
parent 3537a233ca
commit 152d072242
No known key found for this signature in database
GPG key ID: 9843017036F62EE7

View file

@ -32,6 +32,8 @@ class SupercellWxConan(ConanFile):
self.options["libcurl"].with_ssl = "schannel"
elif self.settings.os == "Linux":
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":