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