summaryrefslogtreecommitdiff
path: root/gst/mve/meson.build
blob: ce389044ebb0a19acd708d1a45032298f52f6a59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
mve_sources = [
  'gstmve.c',
  'gstmvemux.c',
  'gstmvedemux.c',
  'mveaudiodec.c',
  'mvevideodec8.c',
  'mvevideodec16.c',
  'mveaudioenc.c',
  'mvevideoenc8.c',
  'mvevideoenc16.c',
]

gstmve = library('gstmve',
  mve_sources,
  c_args : gst_plugins_bad_args,
  include_directories : [configinc, libsinc],
  dependencies : [gstbase_dep, libm],
  install : true,
  install_dir : plugins_install_dir,
)