gstreamer/gst-libs/gst/uridownloader/meson.build
Nirbheek Chauhan cea5e3fcdb meson: Maintain macOS ABI through dylib versioning
Requires Meson 0.48, but the feature will be ignored on older versions
so it's safe to add it without bumping the requirement.

Documentation:
https://github.com/mesonbuild/meson/blob/master/docs/markdown/Reference-manual.md#shared_library
2018-08-31 14:41:00 +05:30

26 lines
719 B
Meson

urid_sources = [
'gstfragment.c',
'gsturidownloader.c',
]
urid_headers = [
'uridownloader-prelude.h',
'gstfragment.h',
'gsturidownloader.h',
'gsturidownloader_debug.h',
]
install_headers(urid_headers, subdir : 'gstreamer-1.0/gst/uridownloader')
gsturidownloader = library('gsturidownloader-' + api_version,
urid_sources,
c_args : gst_plugins_bad_args + [ '-DGST_USE_UNSTABLE_API' ],
include_directories : [configinc, libsinc],
version : libversion,
soversion : soversion,
darwin_versions : osxversion,
install : true,
dependencies : [gstbase_dep],
)
gsturidownloader_dep = declare_dependency(link_with : gsturidownloader,
include_directories : [libsinc],
dependencies : [gstbase_dep])