Remove glib and gobject dependencies everywhere
[platform/upstream/gstreamer.git] / subprojects / gst-plugins-base / sys / ximage / meson.build
1 no_warn_args = []
2 # XKeycodeToKeysym is deprecated, but we use it when Xkb is unavailable
3 if cc.has_argument ('-Wno-deprecated-declarations')
4   no_warn_args += '-Wno-deprecated-declarations'
5 endif
6
7 gstximage = library('gstximagesink',
8   'ximagesink.c', 'ximage.c', 'ximagepool.c',
9   c_args : gst_plugins_base_args + no_warn_args,
10   include_directories: [configinc, libsinc],
11   dependencies : [video_dep, gst_base_dep, gst_dep, x11_dep, xshm_dep, xi_dep],
12   install : true,
13   install_dir : plugins_install_dir,
14 )
15 pkgconfig.generate(gstximage, install_dir : plugins_pkgconfig_install_dir)
16 plugins += [gstximage]