mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
21e9ad2b8e
And remove references to $(GST_PLUGINS_GL_*)
20 lines
675 B
Makefile
20 lines
675 B
Makefile
noinst_PROGRAMS = fxtest
|
|
noinst_PROGRAMS += pixbufdrop
|
|
|
|
fxtest_SOURCES = fxtest.c
|
|
|
|
fxtest_CFLAGS=-I$(top_srcdir)/gst-libs -I$(top_builddir)/gst-libs \
|
|
$(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) \
|
|
$(GL_CFLAGS) $(GTK3_CFLAGS)
|
|
fxtest_LDADD=../libgstgtkhelper.la \
|
|
$(GTK3_LIBS) $(GST_PLUGINS_BASE_LIBS) $(GST_LIBS) \
|
|
$(GL_LIBS) -lgstvideo-$(GST_API_VERSION)
|
|
|
|
pixbufdrop_SOURCES = pixbufdrop.c
|
|
|
|
pixbufdrop_CFLAGS=-I$(top_srcdir)/gst-libs -I$(top_builddir)/gst-libs \
|
|
$(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) \
|
|
$(GL_CFLAGS) $(GTK3_CFLAGS)
|
|
pixbufdrop_LDADD=../libgstgtkhelper.la \
|
|
$(GTK3_LIBS) $(GST_PLUGINS_BASE_LIBS) $(GST_LIBS) \
|
|
$(GL_LIBS) -lgstvideo-$(GST_API_VERSION)
|