Merge pull request #313 from dpaulat/renovate/cpr-1.x

Update dependency cpr to v1.11.1
This commit is contained in:
Dan Paulat 2025-01-06 10:14:18 -06:00 committed by GitHub
commit 70c858d847
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 1 deletions

View file

@ -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")

View file

@ -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)