aboutsummaryrefslogtreecommitdiff
path: root/conanfile.py
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2023-09-06 18:36:44 +0200
committerFelix Morgner <felix.morgner@gmail.com>2023-09-06 18:36:44 +0200
commit17a3bb9337fd7e4a57354ed5359e449d5ab1388c (patch)
treedef6985c1f0c40456304f22e3b30aa17ca01e82b /conanfile.py
parent426d5ca456d03058b37afaf180b5a57c6da53adc (diff)
downloadwanda-17a3bb9337fd7e4a57354ed5359e449d5ab1388c.tar.xz
wanda-17a3bb9337fd7e4a57354ed5359e449d5ab1388c.zip
deps: switch from non-boost to boost asio
Diffstat (limited to 'conanfile.py')
-rw-r--r--conanfile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/conanfile.py b/conanfile.py
index f03b07f..9e89939 100644
--- a/conanfile.py
+++ b/conanfile.py
@@ -27,7 +27,6 @@ class Wanda(ConanFile):
)
exports_sources = ("source/*",)
requires = (
- "asio/[~1.28]",
"boost/[~1.83]",
"libjpeg-turbo/[~3.0]",
"libpng/[~1.6]",
@@ -44,6 +43,7 @@ class Wanda(ConanFile):
cmake.test(env="CTEST_OUTPUT_ON_FAILURE=1")
def configure(self):
+ self.options["boost"].asio_no_deprecated = True
self.options["boost"].header_only = True
self.options["fmt"].header_only = True
self.options["spdlog"].header_only = True