2017-05-25 09:14:09 +00:00
|
|
|
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,
|
2021-10-01 14:31:18 +00:00
|
|
|
c_args : gst_plugins_bad_args + ['-DGST_USE_UNSTABLE_API', '-DBUILDING_GST_ISOFF', '-DG_LOG_DOMAIN="GStreamer-ISOFF"'],
|
2017-05-25 09:14:09 +00:00
|
|
|
include_directories : [configinc, libsinc],
|
|
|
|
version : libversion,
|
|
|
|
soversion : soversion,
|
2018-08-31 09:07:46 +00:00
|
|
|
darwin_versions : osxversion,
|
2017-05-25 09:14:09 +00:00
|
|
|
install : true,
|
|
|
|
dependencies : [gstbase_dep],
|
|
|
|
)
|
|
|
|
|
|
|
|
gstisoff_dep = declare_dependency(link_with : gstisoff,
|
|
|
|
include_directories : [libsinc],
|
|
|
|
dependencies : [gstbase_dep])
|