gstreamer/subprojects/gstreamer/gst/parse/meson.build
Nirbheek Chauhan 1be6d6ccf5 meson: Add explicit check: kwarg to all run_command() calls
This is required since Meson 0.61.0, and causes a warning to be
emitted otherwise:

2c079d855e
https://github.com/mesonbuild/meson/issues/9300

This exposed a bunch of places where we had broken run_command()
calls, unnecessary run_command() calls, and places where check: true
should be used.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1507>
2022-01-09 18:12:47 +05:30

76 lines
2.3 KiB
Meson

cc = meson.get_compiler('c')
# Find flex, configure lex generator
flex_cdata = configuration_data()
flex_min_version='2.5.31'
flex = find_program('flex', 'win_flex')
get_flex_version = find_program('get_flex_version.py')
flexversion_res = run_command([get_flex_version, flex], check: true)
flexversion = flexversion_res.stdout().strip()
if flexversion.version_compare('<' + flex_min_version)
error('flex version @0@ >= @1@: NO'.format(flexversion, flex_min_version))
else
message('flex version @0@ >= @1@: YES'.format(flexversion, flex_min_version))
endif
flex_cdata.set('FLEX', flex.full_path())
if cc.get_id() == 'msvc'
flex_cdata.set('FLEX_ARGS', '--nounistd')
else
flex_cdata.set('FLEX_ARGS', '')
endif
gen_lex = configure_file(input : 'gen_lex.py.in',
output : 'gen_lex.py',
configuration : flex_cdata)
# Find bison, configure grammar generator
bison_parser_cdata = configuration_data()
bison_cdata = configuration_data()
bison_min_version='2.4'
bison = find_program('bison', 'win_bison')
bversion_res = run_command([bison, '--version'], check: true)
bversion = bversion_res.stdout().split('\n')[0].split(' ')[-1].strip()
if bversion.version_compare('<' + bison_min_version)
error('bison version @0@ >= @1@: NO'.format(bversion, bison_min_version))
else
message('bison version @0@ >= @1@: YES'.format(bversion, bison_min_version))
endif
if bversion.version_compare('>' + '2.5')
bison_parser_cdata.set('BISON_PURE_PARSER', '%define api.pure full')
else
bison_parser_cdata.set('BISON_PURE_PARSER', '%pure-parser')
endif
gen_grammar_file = configure_file(input : 'grammar.y.in',
output : 'grammar.y',
configuration : bison_parser_cdata)
bison_cdata.set('BISON', bison.full_path())
bison_cdata.set('BISON_ARGS', '')
gen_grammar = configure_file(input : 'gen_grammar.py.in',
output : 'gen_grammar.py',
configuration : bison_cdata)
# Custom targets
parser = custom_target('parselex',
input : 'parse.l',
output : ['lex.priv_gst_parse_yy.c', 'parse_lex.h'],
command : [python3, gen_lex, '@OUTPUT0@', '@OUTPUT1@', '@INPUT@', 'DUMMY']
)
grammar = custom_target('parsegrammar',
input : gen_grammar_file,
output : ['grammar.tab.c', 'grammar.tab.h'],
command : [python3, gen_grammar, '@OUTPUT0@', '@OUTPUT1@', '@INPUT@'],
depends : [parser],
)
gst_parse_sources += [parser, grammar]