gstreamer/tests/examples/gl/sdl/Makefile.am

20 lines
486 B
Makefile
Raw Normal View History

noinst_PROGRAMS = ##
#works on win32 and X
if HAVE_SDL
noinst_PROGRAMS += sdlshare
sdlshare_SOURCES = sdlshare.c
2014-04-29 12:18:14 +00:00
sdlshare_CFLAGS=$(GST_PLUGINS_GL_CFLAGS) $(GST_VIDEO_CFLAGS) $(GST_CFLAGS) \
$(GL_CFLAGS) $(SDL_CFLAGS) \
-I$(top_srcdir)/gst-libs \
-I$(top_builddir)/gst-libs
2014-04-29 12:18:14 +00:00
sdlshare_LDADD=$(GST_PLUGINS_GL_LIBS) $(GST_VIDEO_LIBS) $(GST_LIBS) \
$(GL_LIBS) $(SDL_LIBS) \
$(top_builddir)/gst-libs/gst/gl/libgstgl-$(GST_API_VERSION).la \
-lgstvideo-$(GST_API_VERSION)
endif