gstreamer/ext/taglib/meson.build
Nirbheek Chauhan fbd4afc64c meson: Pass native: false to add_languages()
This is needed for cross-compiling without a build machine compiler
available. The option was added in 0.54, but we only need this in
Cerbero and it doesn't break older versions so it should be ok.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/merge_requests/589>
2020-05-13 19:25:33 +05:30

31 lines
976 B
Meson

taglib_sources = [
'gstapev2mux.cc',
'gstid3v2mux.cc',
'gsttaglibplugin.c',
]
taglib_dep = dependency('taglib', version : '>= 1.5', required : get_option('taglib'))
if taglib_dep.found() and add_languages('cpp', native: false, required: get_option('taglib'))
extra_args = []
cxx = meson.get_compiler('cpp')
if cxx.has_argument('-fvisibility=hidden')
extra_args += ['-fvisibility=hidden']
endif
if cxx.has_argument('-fno-strict-aliasing')
extra_args += ['-fno-strict-aliasing']
endif
gsttaglib = library('gsttaglib',
taglib_sources,
c_args : gst_plugins_good_args + ['-DGST_USE_UNSTABLE_API'],
cpp_args : gst_plugins_good_args + ['-DGST_USE_UNSTABLE_API'] + extra_args,
include_directories : [configinc, libsinc],
dependencies : [gsttag_dep, taglib_dep],
install : true,
install_dir : plugins_install_dir,
)
pkgconfig.generate(gsttaglib, install_dir : plugins_pkgconfig_install_dir)
plugins += [gsttaglib]
endif