summaryrefslogtreecommitdiff
path: root/test cases
diff options
context:
space:
mode:
Diffstat (limited to 'test cases')
-rw-r--r--test cases/frameworks/8 flex/meson.build4
1 files changed, 3 insertions, 1 deletions
diff --git a/test cases/frameworks/8 flex/meson.build b/test cases/frameworks/8 flex/meson.build
index 32eb89de9..0b1107010 100644
--- a/test cases/frameworks/8 flex/meson.build
+++ b/test cases/frameworks/8 flex/meson.build
@@ -1,7 +1,7 @@
# SPDX-License-Identifier: Apache-2.0
# Copyright © 2024-2025 Intel Corporation
-project('flex and bison', 'c')
+project('flex and bison', 'c', meson_version : '>= 1.10.0')
# The point of this test is that one generator
# may output headers that are necessary to build
@@ -22,9 +22,11 @@ endif
codegen = import('unstable-codegen')
lex = codegen.lex(implementations : ['flex', 'reflex', 'lex'])
+message('lex implementation:', lex.implementation())
lfiles = lex.generate('lexer.l')
yacc = codegen.yacc(implementations : ['byacc', 'bison', 'yacc'])
+message('yacc implementation:', yacc.implementation())
pfiles = yacc.generate('parser.y', header : '@BASENAME@.tab.h')
e = executable(