gl: Reorder CFLAGS to include in-source dirs first in examples

https://bugzilla.gnome.org/show_bug.cgi?id=733426
This commit is contained in:
Руслан Ижбулатов 2014-07-21 11:07:28 +00:00 committed by Tim-Philipp Müller
parent 59f0f140ae
commit 7c62b9ceaa

View file

@ -7,10 +7,13 @@ noinst_PROGRAMS += sdlshare
sdlshare_SOURCES = sdlshare.c
sdlshare_CFLAGS=$(GST_PLUGINS_BASE_CFLAGS)$(GST_CFLAGS) \
$(GL_CFLAGS) $(SDL_CFLAGS) \
sdlshare_CFLAGS= \
-I$(top_srcdir)/gst-libs \
-I$(top_builddir)/gst-libs
-I$(top_builddir)/gst-libs \
$(GST_PLUGINS_BASE_CFLAGS) \
$(GST_CFLAGS) \
$(GL_CFLAGS) \
$(SDL_CFLAGS)
sdlshare_LDADD= $(GST_LIBS) $(GL_LIBS) $(SDL_LIBS) \
$(top_builddir)/gst-libs/gst/gl/libgstgl-$(GST_API_VERSION).la \
-lgstvideo-$(GST_API_VERSION)