diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2019-11-29 11:33:38 +0100 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2019-11-29 11:33:38 +0100 |
| commit | c68fa064f7945a58eba908799678e9c77fb8f3b2 (patch) | |
| tree | 42737df1ad9b73f6b19897d61e428cafee99477f /conanfile.py | |
| parent | 19a333165631f30556ee675ffb1cd5769eb82789 (diff) | |
| download | wanda-c68fa064f7945a58eba908799678e9c77fb8f3b2.tar.xz wanda-c68fa064f7945a58eba908799678e9c77fb8f3b2.zip | |
build: use conan-center packages where possible
Diffstat (limited to 'conanfile.py')
| -rw-r--r-- | conanfile.py | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/conanfile.py b/conanfile.py index a24cc33..b4bd13b 100644 --- a/conanfile.py +++ b/conanfile.py @@ -2,6 +2,7 @@ from conans import ConanFile, CMake + class Wanda(ConanFile): name = "wanda" version = "1.0.0" @@ -24,15 +25,12 @@ class Wanda(ConanFile): "src/*", ) requires = ( - "asio/1.12.0@bincrafters/stable", + "asio/1.12.2", "clara/1.1.5@bincrafters/stable", - "spdlog/1.2.1@bincrafters/stable", - "range-v3/0.4.0@ericniebler/stable", "CUTE/2.2.6@fmorgner/stable", + "spdlog/1.4.1", + "range-v3/0.4.0@ericniebler/stable", ) - default_options = { - "asio:standalone": True, - } def configure_cmake(self): cmake = CMake(self) |
