Add support for Meson as alternative/parallel build system
[platform/upstream/gstreamer.git] / ext / cdio / meson.build
1 cdio_dep = dependency('libcdio', version : '>= 0.76', required : false)
2
3 if cdio_dep.found()
4   cdio = library('gstcdio',
5     ['gstcdio.c', 'gstcdiocddasrc.c'],
6     c_args : ugly_args,
7     include_directories : [configinc, libsinc],
8     dependencies : [gstaudio_dep, gsttag_dep, cdio_dep],
9     install : true,
10     install_dir : plugins_install_dir,
11   )
12 endif