diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2018-12-18 11:20:18 +0100 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2018-12-18 11:22:27 +0100 |
| commit | 342412a11405931d46667b179b9e861b8ed39875 (patch) | |
| tree | 4dbe0a0664ae2cac11fe811ef6dafa4297b148b7 /conanfile.py | |
| parent | 660472c366c119f09d46d25f1eaeb139e9ec09df (diff) | |
| download | wanda-342412a11405931d46667b179b9e861b8ed39875.tar.xz wanda-342412a11405931d46667b179b9e861b8ed39875.zip | |
wanda: replace boost::iterator with range v3
Diffstat (limited to 'conanfile.py')
| -rw-r--r-- | conanfile.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/conanfile.py b/conanfile.py index 701cab6..b52a100 100644 --- a/conanfile.py +++ b/conanfile.py @@ -11,6 +11,7 @@ class Wanda(ConanFile): generators = "cmake" default_user = "fmorgner" default_channel = "stable" + build_policy = "missing" settings = ( "os", "arch", @@ -24,9 +25,9 @@ class Wanda(ConanFile): ) requires = ( "asio/1.12.0@bincrafters/stable", - "boost_iterator/1.67.0@bincrafters/stable", "clara/1.1.5@bincrafters/stable", "spdlog/1.2.1@bincrafters/stable", + "range-v3/0.4.0@ericniebler/stable", ) default_options = { "asio:standalone": True, |
