mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
29 lines
643 B
Makefile
29 lines
643 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) \
|
|
$(WAYLAND_CFLAGS)
|
|
|
|
libgstvulkan_wayland_la_LIBADD = \
|
|
$(WAYLAND_LIBS)
|
|
|
|
libgstvulkan_wayland_la_LDFLAGS = \
|
|
$(GST_LIB_LDFLAGS) \
|
|
$(GST_ALL_LDFLAGS)
|