mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 18:51:11 +00:00
294da02a2f
- fix all the compiler errors - give them their own gl directory
18 lines
661 B
Makefile
18 lines
661 B
Makefile
noinst_PROGRAMS = fxtest
|
|
noinst_PROGRAMS += pixbufdrop
|
|
|
|
fxtest_SOURCES = fxtest.c
|
|
|
|
fxtest_CFLAGS=$(GST_PLUGINS_GL_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) \
|
|
$(GL_CFLAGS) $(GTK3_CFLAGS)
|
|
fxtest_LDADD=../libgstgtkhelper.la \
|
|
$(GTK3_LIBS) $(GST_PLUGINS_GL_LIBS) $(GST_PLUGINS_BASE_LIBS) $(GST_LIBS) \
|
|
$(GL_LIBS) -lgstvideo-$(GST_API_VERSION)
|
|
|
|
pixbufdrop_SOURCES = pixbufdrop.c
|
|
|
|
pixbufdrop_CFLAGS=$(GST_PLUGINS_GL_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) \
|
|
$(GL_CFLAGS) $(GTK3_CFLAGS)
|
|
pixbufdrop_LDADD=../libgstgtkhelper.la \
|
|
$(GTK3_LIBS) $(GST_PLUGINS_GL_LIBS) $(GST_PLUGINS_BASE_LIBS) $(GST_LIBS) \
|
|
$(GL_LIBS) -lgstvideo-$(GST_API_VERSION)
|