From f1f5d34b52dcbe048140d0deb1d5a082bb0c7bd0 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Sun, 15 Nov 2020 01:05:47 +0100 Subject: [PATCH] Add version bounds to meson wrap dependencies Just to prevent the off chance where an older cached version would cause issues. --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index fd367c00..85591b44 100644 --- a/meson.build +++ b/meson.build @@ -57,8 +57,8 @@ boost_filesystem_dep = dependency( modules : ['filesystem'], static : with_static_boost ) -bitsery_dep = subproject('bitsery').get_variable('bitsery_dep') -function2_dep = subproject('function2').get_variable('function2_dep') +bitsery_dep = subproject('bitsery', version : '5.2.0').get_variable('bitsery_dep') +function2_dep = subproject('function2', version : '4.1.0').get_variable('function2_dep') threads_dep = dependency('threads') tomlplusplus_dep = subproject('tomlplusplus', version : '2.1.0').get_variable('tomlplusplus_dep') # The built in threads dependency does not know how to handle winegcc