gstreamer/tests/examples/mpegts/meson.build
Nicolas Dufresne 1cf1aac9a7 meson: Define GST_USE_UNSTABLE_API in the build system
This way meson and autotools both do the same thing and we don't need to
modify the code after all.
2017-10-04 10:00:48 -04:00

8 lines
191 B
Meson

executable('tsparser',
'ts-parser.c',
install: true,
include_directories : [configinc],
dependencies : [gstmpegts_dep],
c_args : ['-DHAVE_CONFIG_H=1', '-DGST_USE_UNSTABLE_API' ],
)