gstreamer/subprojects/gst-plugins-bad/ext/resindvd/meson.build
Tim-Philipp Müller d4bdbeaa0d meson: add 'gpl' option and only build plugins with (A)GPL deps if explicitly enabled
Require explicit opt-in to build plugins with (A)GPL dependencies.

Keep ugly/bad options on 'auto' for now so cerbero doesn't fail.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1084>
2021-10-18 18:03:19 +01:00

35 lines
1.1 KiB
Meson

resindvd_opt = get_option('resindvd').require(gpl_allowed, error_message: '''
Plugin resindvd explicitly required via options but GPL-licensed plugins disabled via options.
Pass option -Dgpl=enabled to Meson to allow GPL-licensed plugins to be built.
''')
resindvd_sources = [
'gstmpegdemux.c',
'gstmpegdesc.c',
'gstpesfilter.c',
'plugin.c',
'resindvdbin.c',
'resindvdsrc.c',
'rsndec.c',
'rsninputselector.c',
'rsnparsetter.c',
]
dvdnav_dep = dependency('dvdnav', version : '>= 4.1.2', required : resindvd_opt)
dvdread_dep = dependency('dvdread', version : '>= 4.1.2', required : resindvd_opt)
if dvdnav_dep.found() and dvdread_dep.found()
gstresindvd = library('gstresindvd',
resindvd_sources,
c_args : gst_plugins_bad_args,
link_args : noseh_link_args,
include_directories : [configinc, libsinc],
dependencies : [gstvideo_dep, gstpbutils_dep, gsttag_dep,
dvdnav_dep, dvdread_dep, gmodule_dep],
install : true,
install_dir : plugins_install_dir,
)
pkgconfig.generate(gstresindvd, install_dir : plugins_pkgconfig_install_dir)
plugins += [gstresindvd]
endif