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

index 1736ff3..0e08f51 100644 (file)
@@ -1,4 +1,3 @@
-# FIXME implement these
 subdir('assrender')
 subdir('aom')
 subdir('bs2b')
@@ -39,7 +38,7 @@ subdir('openexr')
 subdir('openh264')
 subdir('openjpeg')
 subdir('openmpt')
-#subdir('openni2')
+subdir('openni2')
 subdir('opus')
 subdir('resindvd')
 subdir('rsvg')
diff --git a/ext/openni2/meson.build b/ext/openni2/meson.build
new file mode 100644 (file)
index 0000000..192f276
--- /dev/null
@@ -0,0 +1,17 @@
+if not add_languages('cpp', required: get_option('openni2'))
+  subdir_done()
+endif
+
+openni2_dep = dependency('libopenni2', version: '>= 0.26', required: get_option('openni2'))
+if openni2_dep.found()
+  gstopenni2 = library('gstopenni2',
+    'gstopenni2.cpp', 'gstopenni2src.cpp',
+    cpp_args: gst_plugins_bad_args,
+    link_args: noseh_link_args,
+    include_directories: [configinc],
+    dependencies: [gstvideo_dep, openni2_dep],
+    install: true,
+    install_dir: plugins_install_dir,
+  )
+  pkgconfig.generate(gstopenni2, install_dir: plugins_pkgconfig_install_dir)
+endif
index aa266e9..e9cc3e5 100644 (file)
@@ -124,6 +124,7 @@ option('openexr', type : 'feature', value : 'auto', description : 'OpenEXR plugi
 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('openni2', type : 'feature', value : 'auto', description : 'OpenNI2 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')