Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/GStreamer/gst-plugins-good.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2016-10-18 09:53:42 +0300
committerNirbheek Chauhan <nirbheek@centricular.com>2016-10-18 09:53:42 +0300
commit4306cb6f79925c3e5799bb4ec5ac6d2eda1125f3 (patch)
treec156d7e6ac3421980fcca713308f3c5903f158ad /gst/monoscope
parent3c53d0f38c98239d88a82d4b672146ca57ae7892 (diff)
meson: Add missing gstaudio dep to monoscope
In file included from ../subprojects/gst-plugins-good/gst/monoscope/gstmonoscope.c:42:0: ../subprojects/gst-plugins-base/gst-libs/gst/audio/audio.h:26:39: fatal error: gst/audio/audio-enumtypes.h: No such file or directory #include <gst/audio/audio-enumtypes.h> ^ compilation terminated. https://ci.gstreamer.net/job/GStreamer-master-meson/271/console
Diffstat (limited to 'gst/monoscope')
-rw-r--r--gst/monoscope/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/monoscope/meson.build b/gst/monoscope/meson.build
index 737471950..2aad191d5 100644
--- a/gst/monoscope/meson.build
+++ b/gst/monoscope/meson.build
@@ -4,7 +4,7 @@ gstmonoscope = library('gstmonoscope',
'convolve.c',
c_args : gst_plugins_good_args,
include_directories : [configinc],
- dependencies : [gstbase_dep, gstvideo_dep],
+ dependencies : [gstbase_dep, gstaudio_dep, gstvideo_dep],
install : true,
install_dir : plugins_install_dir,
)