mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
8a31251ff9
Fixing build failure https://ci.appveyor.com/project/thiblahute/gst-build-ge9m5/build/1.0.1197 FAILED: cl @subprojects/gst-devtools/validate/gst-libs/gst/video/gstvalidatevideo@sta/gstvalidatessim.c.obj.rsp c:\projects\gst-build-ge9m5\subprojects\gst-plugins-base\gst-libs\gst\pbutils\pbutils.h(30): fatal error C1083: Cannot open include file: 'gst/pbutils/pbutils-enumtypes.h': No such file or directory FAILED: cl @subprojects/gst-devtools/validate/plugins/ssim/gstvalidatessim@sha/gstvalidatessim.c.obj.rsp c:\projects\gst-build-ge9m5\subprojects\gst-plugins-base\gst-libs\gst\pbutils\pbutils.h(30): fatal error C1083: Cannot open include file: 'gst/pbutils/pbutils-enumtypes.h': No such file or directory
12 lines
469 B
Meson
12 lines
469 B
Meson
if cairo_dep.found()
|
|
shared_library('gstvalidatessim',
|
|
'gstvalidatessim.c',
|
|
include_directories : inc_dirs,
|
|
link_with: [video, gstvalidate],
|
|
dependencies : [gst_dep, gst_video_dep, glib_dep, cairo_dep,
|
|
gst_pbutils_dep],
|
|
install : true,
|
|
install_dir : validate_plugins_install_dir,
|
|
c_args: ['-DHAVE_CONFIG_H'],
|
|
)
|
|
endif
|