From 2b0b8f0930f73c938df362971ae56d7d1735537d Mon Sep 17 00:00:00 2001 From: Marcel Hollerbach Date: Mon, 27 Jul 2020 12:24:57 +0200 Subject: [PATCH] build: warn of faulty check version Differential Revision: https://phab.enlightenment.org/D12067 --- meson.build | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/meson.build b/meson.build index f7f392da75..90116b67d3 100644 --- a/meson.build +++ b/meson.build @@ -582,6 +582,10 @@ subdir(join_paths('data')) if get_option('build-tests') check = dependency('check') + if (check.version() == '0.15.1') + error('There is a bug in check@0.15.1 which does not allow efl to be compiled with it. Please downgrade / upgrade or disable tests') + endif + test_env = environment() test_env.set('EFL_RUN_IN_TREE', '1')