Add support for Meson as alternative/parallel build system
[platform/upstream/gstreamer.git] / ext / x264 / meson.build
1 x264_sources = [
2   'gstx264enc.c',
3 ]
4
5 x264_dep = dependency('x264', required : false)
6
7 if x264_dep.found()
8   gstx264 = library('gstx264',
9     x264_sources,
10     c_args : ugly_args,
11     include_directories : [configinc],
12     dependencies : [gstbase_dep, gstvideo_dep, gstpbutils_dep, x264_dep],
13     install : true,
14     install_dir : plugins_install_dir,
15   )
16 endif