mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 19:31:12 +00:00
294da02a2f
- fix all the compiler errors - give them their own gl directory
15 lines
291 B
Makefile
15 lines
291 B
Makefile
noinst_PROGRAMS = ##
|
|
|
|
#works on win32 and X
|
|
if HAVE_SDL
|
|
|
|
noinst_PROGRAMS += sdlshare
|
|
|
|
sdlshare_SOURCES = sdlshare.c
|
|
|
|
sdlshare_CFLAGS=$(GST_PLUGINS_GL_CFLAGS) $(GST_CFLAGS) \
|
|
$(GL_CFLAGS) $(SDL_CFLAGS)
|
|
sdlshare_LDADD=$(GST_PLUGINS_GL_LIBS) $(GST_LIBS) \
|
|
$(GL_LIBS) $(SDL_LIBS)
|
|
|
|
endif
|