mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 17:09:48 +00:00
8227135f3b
Tests and documentation will follow separately. The mixer elements in the opengl plugin need to stay in -bad for now since they use GstVideoAggregator. https://bugzilla.gnome.org/show_bug.cgi?id=754094
20 lines
644 B
Makefile
20 lines
644 B
Makefile
noinst_PROGRAMS = fxtest
|
|
noinst_PROGRAMS += pixbufdrop
|
|
|
|
fxtest_SOURCES = fxtest.c
|
|
|
|
fxtest_CFLAGS=\
|
|
$(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) \
|
|
$(GL_CFLAGS) $(GTK_CFLAGS) $(X11_CFLAGS)
|
|
fxtest_LDADD=../libgstgtkhelper.la \
|
|
$(top_builddir)/gst-libs/gst/video/libgstvideo-@GST_API_VERSION@.la \
|
|
$(GST_LIBS) $(GL_LIBS) $(GTK_LIBS) $(X11_LIBS)
|
|
|
|
pixbufdrop_SOURCES = pixbufdrop.c
|
|
|
|
pixbufdrop_CFLAGS=\
|
|
$(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) \
|
|
$(GL_CFLAGS) $(GTK_CFLAGS) $(X11_CFLAGS)
|
|
pixbufdrop_LDADD=../libgstgtkhelper.la \
|
|
$(top_builddir)/gst-libs/gst/video/libgstvideo-@GST_API_VERSION@.la \
|
|
$(GST_LIBS) $(GL_LIBS) $(GTK_LIBS) $(X11_LIBS)
|