meson: build openmpt plugin
authorTim-Philipp Müller <tim@centricular.com>
Mon, 17 Dec 2018 00:19:37 +0000 (00:19 +0000)
committerSebastian Dröge <slomo@coaxion.net>
Mon, 17 Dec 2018 09:12:53 +0000 (09:12 +0000)
ext/meson.build
ext/openmpt/meson.build [new file with mode: 0644]
meson_options.txt

index f1e8af7..1736ff3 100644 (file)
@@ -38,6 +38,7 @@ subdir('opencv')
 subdir('openexr')
 subdir('openh264')
 subdir('openjpeg')
+subdir('openmpt')
 #subdir('openni2')
 subdir('opus')
 subdir('resindvd')
diff --git a/ext/openmpt/meson.build b/ext/openmpt/meson.build
new file mode 100644 (file)
index 0000000..ebc408f
--- /dev/null
@@ -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
index 51dd528..aa266e9 100644 (file)
@@ -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')