1isoff_sources = [
2  'gstisoff.c',
3]
4isoff_headers = [
5  'gstisoff.h',
6]
7install_headers(isoff_headers, subdir : 'gstreamer-1.0/gst/isoff')
8
9gstisoff = library('gstisoff-' + api_version,
10  isoff_sources,
11  c_args : gst_plugins_bad_args + ['-DGST_USE_UNSTABLE_API', '-DBUILDING_GST_ISOFF'],
12  include_directories : [configinc, libsinc],
13  version : libversion,
14  soversion : soversion,
15  darwin_versions : osxversion,
16  install : true,
17  dependencies : [gstbase_dep],
18)
19
20gstisoff_dep = declare_dependency(link_with : gstisoff,
21  include_directories : [libsinc],
22  dependencies : [gstbase_dep])
23