1## Process this file with automake to produce Makefile.in
2
3noinst_LTLIBRARIES = libgstgl-x11.la
4
5libgstgl_x11_la_SOURCES = \
6	gstgldisplay_x11.c \
7	gstglwindow_x11.c \
8	xcb_event_source.c
9
10noinst_HEADERS = \
11	gstglwindow_x11.h \
12	xcb_event_source.h
13
14libgstgl_x11includedir = $(includedir)/gstreamer-@GST_API_VERSION@/gst/gl/x11
15libgstgl_x11include_HEADERS = \
16	gstgldisplay_x11.h
17
18if USE_GLX
19libgstgl_x11_la_SOURCES += gstglcontext_glx.c
20noinst_HEADERS += gstglcontext_glx.h
21endif
22
23libgstgl_x11_la_CFLAGS = \
24	-I$(top_srcdir)/gst-libs \
25	-I$(top_builddir)/gst-libs \
26	-DBUILDING_GST_GL \
27	$(GL_CFLAGS) \
28	$(GST_PLUGINS_BASE_CFLAGS) \
29	$(GST_BASE_CFLAGS) \
30	$(GST_CFLAGS)
31
32libgstgl_x11_la_LDFLAGS = \
33	$(GST_LIB_LDFLAGS) \
34	$(GST_ALL_LDFLAGS)
35