Remove GstVideoAggregator, moved into libgstvideo in -base
[platform/upstream/gstreamer.git] / gst / compositor / meson.build
1 compositor_sources = [
2   'blend.c',
3   'compositor.c',
4 ]
5
6 orcsrc = 'compositororc'
7 if have_orcc
8   orc_h = custom_target(orcsrc + '.h',
9     input : orcsrc + '.orc',
10     output : orcsrc + '.h',
11     command : orcc_args + ['--header', '-o', '@OUTPUT@', '@INPUT@'])
12   orc_c = custom_target(orcsrc + '.c',
13     input : orcsrc + '.orc',
14     output : orcsrc + '.c',
15     command : orcc_args + ['--implementation', '-o', '@OUTPUT@', '@INPUT@'])
16 else
17   orc_h = configure_file(input : orcsrc + '-dist.h',
18     output : orcsrc + '.h',
19     copy : true)
20   orc_c = configure_file(input : orcsrc + '-dist.c',
21     output : orcsrc + '.c',
22     copy : true)
23 endif
24
25 gstcompositor = library('gstcompositor',
26   compositor_sources, orc_c, orc_h,
27   c_args : gst_plugins_bad_args,
28   include_directories : [configinc],
29   dependencies : [gstvideo_dep, gstbase_dep, orc_dep, libm],
30   install : true,
31   install_dir : plugins_install_dir,
32 )
33 pkgconfig.generate(gstcompositor, install_dir : plugins_pkgconfig_install_dir)