dv, gtk, qt, osxaudio, osxvideo, waveform: add to plugins list
authorTim-Philipp Müller <tim@centricular.com>
Wed, 29 May 2019 09:58:40 +0000 (10:58 +0100)
committerTim-Philipp Müller <tim@centricular.com>
Wed, 29 May 2019 14:56:37 +0000 (14:56 +0000)
Makes sure the paths for these plugins are included in the
uninstalled plugin paths list. And also for the docs.

Fixes #604

ext/dv/meson.build
ext/gtk/meson.build
ext/qt/meson.build
sys/osxaudio/meson.build
sys/osxvideo/meson.build
sys/waveform/meson.build

index 1df2ae5..ccb4a69 100644 (file)
@@ -18,7 +18,7 @@ if dv_dep.found()
     install_dir : plugins_install_dir,
   )
   pkgconfig.generate(gstdv, install_dir : plugins_pkgconfig_install_dir)
-
+  plugins += [gstdv]
   # FIXME
   #executable('smpte_test',
   #  'smpte_test.c', 'gstsmptetimecode.c',
index 62b65b0..1d2914b 100644 (file)
@@ -53,5 +53,6 @@ if gtk_dep.found()
     install_dir : plugins_install_dir,
   )
   pkgconfig.generate(gstgtk, install_dir : plugins_pkgconfig_install_dir)
+  plugins += [gstgtk]
 endif
 
index 5f040c8..40cc9e0 100644 (file)
@@ -160,6 +160,7 @@ if have_cxx and build_gstgl
         install: true,
         install_dir : plugins_install_dir)
       pkgconfig.generate(gstqmlgl, install_dir : plugins_pkgconfig_install_dir)
+      plugins += [gstqmlgl]
     endif
   endif
 endif
index 4a33028..8bac033 100644 (file)
@@ -41,4 +41,5 @@ if have_osxaudio
     install : true,
     install_dir : plugins_install_dir)
   pkgconfig.generate(gstosxaudio, install_dir : plugins_pkgconfig_install_dir)
+  plugins += [gstosxaudio]
 endif
index 0f6ec1a..28ff767 100644 (file)
@@ -24,4 +24,5 @@ if have_objc and osxvideo_opengl_dep.found() and osxvideo_cocoa_dep.found()
     install : true,
     install_dir : plugins_install_dir)
   pkgconfig.generate(gstosxvideo, install_dir : plugins_pkgconfig_install_dir)
+  plugins += [gstosxvideo]
 endif
index 6c9bc95..9dc37f4 100644 (file)
@@ -24,4 +24,5 @@ if have_waveform
     install : true,
     install_dir : plugins_install_dir)
   pkgconfig.generate(gstwaveformsink, install_dir : plugins_pkgconfig_install_dir)
+  plugins += [gstwaveformsink]
 endif