summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Hollerbach <mail@marcel-hollerbach.de>2020-07-27 12:24:57 +0200
committerStefan Schmidt <s.schmidt@samsung.com>2020-07-27 14:24:51 +0200
commitb7a61632d0f639cb19823e712da9ee1a7ed145ec (patch)
treec4c476d95c442e368a32c47199059fec92cbe61d
parentfb33fcb370fb58c4aeefbf897785b59b919c7f61 (diff)
downloadefl-b7a61632d0f639cb19823e712da9ee1a7ed145ec.tar.gz
build: warn of faulty check version
Reviewed-by: Stefan Schmidt <stefan@datenfreihafen.org> Differential Revision: https://phab.enlightenment.org/D12067
-rw-r--r--meson.build4
1 files changed, 4 insertions, 0 deletions
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')