From 3a332f169e3c0ebbe4e6f1377ec3ed64618af865 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Mon, 4 May 2020 00:59:25 +0200 Subject: [PATCH] Bump the minimum required version of Boost Not sure which version is the actual minimum version required, but at least Bosot 1.65 is missing some headers we need. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 7ee47f3a..9c76f11f 100644 --- a/meson.build +++ b/meson.build @@ -41,7 +41,7 @@ subdir('src/common/config') # Statically link against Boost.Filesystem, otherwise it becomes impossible to # distribute a prebuilt version of yabridge -boost_dep = dependency('boost', modules : ['filesystem'], static : true) +boost_dep = dependency('boost', version : '>=1.66', modules : ['filesystem'], static : true) bitsery_dep = subproject('bitsery').get_variable('bitsery_dep') threads_dep = dependency('threads') # The built in threads dependency does not know how to handle winegcc