mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
7c64ea4832
Adittionally, remove leftover WAYLAND_DRM_ include flags var
Fixes building of ext/wayland/* broken by dfd86de67a
Related to:
https://bugzilla.gnome.org/show_bug.cgi?id=773927
29 lines
657 B
Makefile
29 lines
657 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
noinst_LTLIBRARIES = libgstvulkan-wayland.la
|
|
|
|
libgstvulkan_wayland_la_SOURCES = \
|
|
vkdisplay_wayland.c \
|
|
vkwindow_wayland.c \
|
|
wayland_event_source.c
|
|
|
|
noinst_HEADERS = \
|
|
vkdisplay_wayland.h \
|
|
vkwindow_wayland.h \
|
|
wayland_event_source.h
|
|
|
|
libgstvulkan_wayland_la_CFLAGS = \
|
|
-I$(top_srcdir)/gst-libs \
|
|
-I$(top_srcdir)/ext/vulkan \
|
|
-I$(top_builddir)/gst-libs \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(VULKAN_WAYLAND_CFLAGS)
|
|
|
|
libgstvulkan_wayland_la_LIBADD = \
|
|
$(VULKAN_WAYLAND_LIBS)
|
|
|
|
libgstvulkan_wayland_la_LDFLAGS = \
|
|
$(GST_LIB_LDFLAGS) \
|
|
$(GST_ALL_LDFLAGS)
|