mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-16 19:25:18 +00:00
meson: build openmpt plugin
This commit is contained in:
parent
79d8855d87
commit
094478d248
3 changed files with 14 additions and 0 deletions
|
@ -38,6 +38,7 @@ subdir('opencv')
|
|||
subdir('openexr')
|
||||
subdir('openh264')
|
||||
subdir('openjpeg')
|
||||
subdir('openmpt')
|
||||
#subdir('openni2')
|
||||
subdir('opus')
|
||||
subdir('resindvd')
|
||||
|
|
12
ext/openmpt/meson.build
Normal file
12
ext/openmpt/meson.build
Normal file
|
@ -0,0 +1,12 @@
|
|||
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)
|
||||
endif
|
|
@ -123,6 +123,7 @@ option('openal', type : 'feature', value : 'auto', description : 'OpenAL plugin'
|
|||
option('openexr', type : 'feature', value : 'auto', description : 'OpenEXR plugin')
|
||||
option('openh264', type : 'feature', value : 'auto', description : 'H.264 video codec plugin')
|
||||
option('openjpeg', type : 'feature', value : 'auto', description : 'JPEG2000 image codec plugin')
|
||||
option('openmpt', type : 'feature', value : 'auto', description : 'OpenMPT module music library plugin')
|
||||
option('opensles', type : 'feature', value : 'auto', description : 'OpenSL ES audio source/sink plugin')
|
||||
option('opus', type : 'feature', value : 'auto', description : 'OPUS audio parser plugin')
|
||||
option('resindvd', type : 'feature', value : 'auto', description : 'Resin DVD playback plugin')
|
||||
|
|
Loading…
Reference in a new issue