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.
13 lines
473 B
Meson
13 lines
473 B
Meson
openmpt_dep = dependency('libopenmpt', required: get_option('openmpt'))
|
|
if openmpt_dep.found()
|
|
gstopenmpt = library('gstopenmpt',
|
|
'gstopenmptdec.c', 'plugin.c',
|
|
c_args: gst_plugins_bad_args,
|
|
include_directories: [configinc],
|
|
dependencies: [gstbadaudio_dep, gstaudio_dep, openmpt_dep],
|
|
install: true,
|
|
install_dir: plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstopenmpt, install_dir: plugins_pkgconfig_install_dir)
|
|
plugins += [gstopenmpt]
|
|
endif
|