mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 14:10:06 +00:00
Merge pull request #313 from dpaulat/renovate/cpr-1.x
Update dependency cpr to v1.11.1
This commit is contained in:
commit
70c858d847
2 changed files with 7 additions and 1 deletions
|
|
@ -6,7 +6,7 @@ import os
|
|||
class SupercellWxConan(ConanFile):
|
||||
settings = ("os", "compiler", "build_type", "arch")
|
||||
requires = ("boost/1.86.0",
|
||||
"cpr/1.11.0",
|
||||
"cpr/1.11.1",
|
||||
"fontconfig/2.15.0",
|
||||
"freetype/2.13.2",
|
||||
"geographiclib/2.4",
|
||||
|
|
@ -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")
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@ project(scwx-data)
|
|||
find_package(Boost)
|
||||
find_package(cpr)
|
||||
find_package(LibXml2)
|
||||
find_package(OpenSSL)
|
||||
find_package(re2)
|
||||
find_package(spdlog)
|
||||
|
||||
|
|
@ -291,6 +292,7 @@ target_link_libraries(wxdata PUBLIC aws-cpp-sdk-core
|
|||
aws-cpp-sdk-s3
|
||||
cpr::cpr
|
||||
LibXml2::LibXml2
|
||||
OpenSSL::Crypto
|
||||
re2::re2
|
||||
spdlog::spdlog
|
||||
units::units)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue