summaryrefslogtreecommitdiff
path: root/gst-libs/gst/isoff/meson.build
blob: 8666ea163a23a7779a0ddbecb054104cb7047011 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
isoff_sources = [
  'gstisoff.c',
]
isoff_headers = [
  'gstisoff.h',
]
install_headers(isoff_headers, subdir : 'gstreamer-1.0/gst/isoff')

gstisoff = library('gstisoff-' + api_version,
  isoff_sources,
  c_args : gst_plugins_bad_args + [ '-DGST_USE_UNSTABLE_API' ],
  include_directories : [configinc, libsinc],
  version : libversion,
  soversion : soversion,
  install : true,
  dependencies : [gstbase_dep],
)

gstisoff_dep = declare_dependency(link_with : gstisoff,
  include_directories : [libsinc],
  dependencies : [gstbase_dep])