mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
efa9bdccf9
Nixos installs into a non-standard includedir, so need to take account of the 'includedir' option instead of just hard-coding 'include' here. https://bugzilla.gnome.org/show_bug.cgi?id=794856
81 lines
2.5 KiB
Meson
81 lines
2.5 KiB
Meson
pbutils_sources = [
|
|
'gstpluginsbaseversion.c',
|
|
'pbutils.c',
|
|
'codec-utils.c',
|
|
'descriptions.c',
|
|
'encoding-profile.c',
|
|
'encoding-target.c',
|
|
'install-plugins.c',
|
|
'missing-plugins.c',
|
|
'gstaudiovisualizer.c',
|
|
'gstdiscoverer.c',
|
|
'gstdiscoverer-types.c'
|
|
]
|
|
|
|
pbconf = configuration_data()
|
|
pbconf.set('PACKAGE_VERSION_MAJOR', gst_version_major)
|
|
pbconf.set('PACKAGE_VERSION_MINOR', gst_version_minor)
|
|
pbconf.set('PACKAGE_VERSION_MICRO', gst_version_micro)
|
|
pbconf.set('PACKAGE_VERSION_NANO', gst_version_nano)
|
|
gst_pbutils_version_h = configure_file(input : 'gstpluginsbaseversion.h.in',
|
|
output: 'gstpluginsbaseversion.h',
|
|
install_dir : join_paths(get_option('includedir'), 'gstreamer-1.0/gst/pbutils'),
|
|
configuration: pbconf)
|
|
|
|
pbutils_headers = [
|
|
'pbutils.h',
|
|
'pbutils-prelude.h',
|
|
'codec-utils.h',
|
|
'descriptions.h',
|
|
'encoding-profile.h',
|
|
'encoding-target.h',
|
|
'install-plugins.h',
|
|
'missing-plugins.h',
|
|
'gstdiscoverer.h',
|
|
'gstaudiovisualizer.h',
|
|
]
|
|
install_headers(pbutils_headers, subdir : 'gstreamer-1.0/gst/pbutils/')
|
|
|
|
pbutils_mkenum_headers = pbutils_headers
|
|
|
|
pbutils_enums = gnome.mkenums_simple('pbutils-enumtypes',
|
|
sources : pbutils_mkenum_headers,
|
|
header_prefix : '#include <gst/pbutils/pbutils-prelude.h>',
|
|
decorator : 'GST_PBUTILS_API',
|
|
install_header: true,
|
|
install_dir : join_paths(get_option('includedir'), 'gstreamer-1.0/gst/pbutils'))
|
|
gstpbutils_c = pbutils_enums[0]
|
|
gstpbutils_h = pbutils_enums[1]
|
|
|
|
gstpbutils_deps = [video_dep, audio_dep, tag_dep]
|
|
pbutils = library('gstpbutils-@0@'.format(api_version),
|
|
pbutils_sources, gstpbutils_c, gstpbutils_h,
|
|
c_args : gst_plugins_base_args,
|
|
include_directories: [configinc, libsinc],
|
|
version : libversion,
|
|
soversion : soversion,
|
|
install : true,
|
|
dependencies : gstpbutils_deps,
|
|
)
|
|
|
|
pbutils_gen_sources = [gstpbutils_h, gst_pbutils_version_h]
|
|
if build_gir
|
|
gst_gir_extra_args = gir_init_section + [ '--c-include=gst/pbutils/pbutils.h' ]
|
|
pbutils_gen_sources += [gnome.generate_gir(pbutils,
|
|
sources : pbutils_sources + pbutils_headers + [gstpbutils_h, gst_pbutils_version_h],
|
|
namespace : 'GstPbutils',
|
|
nsversion : api_version,
|
|
identifier_prefix : 'Gst',
|
|
symbol_prefix : 'gst',
|
|
export_packages : 'gstreamer-pbutils-1.0',
|
|
includes : ['Gst-1.0', 'GstBase-1.0', 'GstAudio-1.0', 'GstVideo-1.0'],
|
|
install : true,
|
|
extra_args : gst_gir_extra_args,
|
|
dependencies : gstpbutils_deps
|
|
)]
|
|
endif
|
|
|
|
pbutils_dep = declare_dependency(link_with : pbutils,
|
|
include_directories : [libsinc],
|
|
dependencies : gstpbutils_deps,
|
|
sources : pbutils_gen_sources)
|