mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 13:20:04 +00:00
As of Qt 6.2, schannel is available as a TLS backend, OpenSSL is not required
This commit is contained in:
parent
b5241ff1f7
commit
432d794626
1 changed files with 3 additions and 2 deletions
|
|
@ -25,12 +25,13 @@ class SupercellWxConan(ConanFile):
|
||||||
"zlib/1.3.1")
|
"zlib/1.3.1")
|
||||||
generators = ("CMakeDeps")
|
generators = ("CMakeDeps")
|
||||||
default_options = {"geos/*:shared" : True,
|
default_options = {"geos/*:shared" : True,
|
||||||
"libiconv/*:shared" : True,
|
"libiconv/*:shared" : True}
|
||||||
"openssl/*:shared" : True}
|
|
||||||
|
|
||||||
def configure(self):
|
def configure(self):
|
||||||
if self.settings.os == "Windows":
|
if self.settings.os == "Windows":
|
||||||
self.options["libcurl"].with_ssl = "schannel"
|
self.options["libcurl"].with_ssl = "schannel"
|
||||||
|
elif self.settings.os == "Linux":
|
||||||
|
self.options["openssl"].shared = True
|
||||||
|
|
||||||
def requirements(self):
|
def requirements(self):
|
||||||
if self.settings.os == "Linux":
|
if self.settings.os == "Linux":
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue