mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 16:50:47 +00:00
meson: Add libsinc to the CFLAGS
Otherwise gst-i18n-plugin.h can't be found.
This commit is contained in:
parent
2e6510b9e2
commit
38be1fb2db
4 changed files with 4 additions and 4 deletions
|
@ -4,7 +4,7 @@ if openal_dep.found()
|
|||
gstopenal = library('gstopenal',
|
||||
'gstopenal.c', 'gstopenalsink.c', 'gstopenalsrc.c',
|
||||
c_args: gst_plugins_bad_args,
|
||||
include_directories: [configinc],
|
||||
include_directories: [configinc, libsinc],
|
||||
dependencies: [gstaudio_dep, openal_dep],
|
||||
install: true,
|
||||
install_dir: plugins_install_dir,
|
||||
|
|
|
@ -61,7 +61,7 @@
|
|||
# include <config.h>
|
||||
#endif
|
||||
|
||||
#include "../../gst-libs/gst/gst-i18n-plugin.h"
|
||||
#include <gst/gst-i18n-plugin.h>
|
||||
#include "gsttemplatematch.h"
|
||||
#include <opencv2/imgproc.hpp>
|
||||
#if (CV_MAJOR_VERSION >= 4)
|
||||
|
|
|
@ -104,7 +104,7 @@ if opencv_found
|
|||
gstopencv_sources,
|
||||
cpp_args : gst_plugins_bad_args + gstopencv_cargs + [ '-DGST_USE_UNSTABLE_API' ],
|
||||
link_args : noseh_link_args,
|
||||
include_directories : [configinc],
|
||||
include_directories : [configinc, libsinc],
|
||||
dependencies : [gstbase_dep, gstvideo_dep, opencv_dep, gstopencv_dep],
|
||||
install : true,
|
||||
install_dir : plugins_install_dir,
|
||||
|
|
|
@ -4,7 +4,7 @@ if sndfile_dep.found()
|
|||
gstsndfile = library('gstsndfile',
|
||||
'gstsf.c', 'gstsfdec.c', # 'gstsfsink.c', 'gstsfsrc.c',
|
||||
c_args: gst_plugins_bad_args,
|
||||
include_directories: [configinc],
|
||||
include_directories: [configinc, libsinc],
|
||||
dependencies: [gstaudio_dep, gst_dep, sndfile_dep],
|
||||
install: true,
|
||||
install_dir: plugins_install_dir,
|
||||
|
|
Loading…
Reference in a new issue