xref: /OK3568_Linux_fs/external/gstreamer-rockchip/gst/rkximage/meson.build (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1rkximage_sources = [
2  'gstkmsallocator.c',
3  'gstkmsbufferpool.c',
4  'gstkmsutils.c',
5  'ximagesink.c',
6]
7
8if not x11_dep.found() or not drm_dep.found()
9  subdir_done()
10endif
11
12rkximage = library('gstrkximage',
13  rkximage_sources,
14  c_args : [gst_rockchip_args],
15  include_directories : [configinc],
16  dependencies : [gstbase_dep, gstvideo_dep, gstallocators_dep, x11_dep, drm_dep],
17  install : true,
18  install_dir : plugins_install_dir,
19)
20