mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
7853700b50
Makes sure their path gets added to the uninstalled environment and makes sure they get included in the docs.
18 lines
535 B
Meson
18 lines
535 B
Meson
if not add_languages('cpp', required: get_option('modplug'))
|
|
subdir_done()
|
|
endif
|
|
|
|
modplug_dep = dependency('libmodplug', required: get_option('modplug'))
|
|
|
|
if modplug_dep.found()
|
|
gstmodplug = library('gstmodplug',
|
|
'gstmodplug.cc',
|
|
cpp_args: gst_plugins_bad_args,
|
|
include_directories: [configinc],
|
|
dependencies: [gstaudio_dep, modplug_dep, libm],
|
|
install: true,
|
|
install_dir: plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstmodplug, install_dir: plugins_pkgconfig_install_dir)
|
|
plugins += [gstmodplug]
|
|
endif
|