Assume that above situation, I configured meson build like the code below.
project('tutorial', ['c'], version : '1.0v')
src = files(['file1.c', 'file2.c', 'file3.c'])
executable('tutorial',
sources : [src],
c_args : [CFLAGS],
link_args : [LDFLAGS, LDFLAGS_OUTPUT])
how can i specific directory build using regular expression like as
src = files(['*.c']) or
or useful meson fuction? (method)? like as
meson.src_dir('src/')
is that possible?