2003-10-28 18:54:20 +00:00
|
|
|
|
2008-01-17 23:23:31 +00:00
|
|
|
plugin_LTLIBRARIES = libgstopengl.la
|
2003-10-28 18:54:20 +00:00
|
|
|
|
2008-01-18 15:13:16 +00:00
|
|
|
AM_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
2007-12-27 00:52:22 +00:00
|
|
|
AM_LIBS = $(GST_BASE_LIBS)
|
|
|
|
|
2008-01-17 23:23:31 +00:00
|
|
|
libgstopengl_la_SOURCES = \
|
2008-07-15 21:16:53 +00:00
|
|
|
gstopengl.c \
|
2008-05-18 19:18:04 +00:00
|
|
|
gstglimagesink.c \
|
|
|
|
gstglimagesink.h \
|
2008-07-15 21:16:53 +00:00
|
|
|
gstglgraphicmaker.c \
|
|
|
|
gstglgraphicmaker.h \
|
|
|
|
gstglvideomaker.c \
|
|
|
|
gstglvideomaker.h
|
|
|
|
|
2008-01-18 15:13:16 +00:00
|
|
|
# check order of CFLAGS and LIBS, shouldn't the order be the other way around
|
|
|
|
# (like in AM_CFLAGS)?
|
2008-01-17 23:23:31 +00:00
|
|
|
libgstopengl_la_CFLAGS = $(GST_CFLAGS) $(X_CFLAGS) $(GST_BASE_CFLAGS) \
|
2008-01-18 15:13:16 +00:00
|
|
|
$(GST_PLUGINS_BASE_CFLAGS) $(GL_CFLAGS) \
|
2008-01-17 23:23:31 +00:00
|
|
|
-I$(top_srcdir)/gst-libs \
|
2008-05-18 16:04:56 +00:00
|
|
|
-I$(top_srcdir)/gst-libs/gst/freeglut \
|
2008-01-17 23:23:31 +00:00
|
|
|
-I$(top_srcdir)/gst-libs/gst/gl
|
2008-01-31 21:35:56 +00:00
|
|
|
libgstopengl_la_LIBADD = \
|
2008-05-18 19:18:04 +00:00
|
|
|
$(top_builddir)/gst-libs/gst/freeglut/libgstfreeglut-$(GST_MAJORMINOR).la \
|
2008-01-31 21:35:56 +00:00
|
|
|
$(top_builddir)/gst-libs/gst/gl/libgstgl-$(GST_MAJORMINOR).la \
|
2008-01-18 15:13:16 +00:00
|
|
|
$(GST_BASE_LIBS) \
|
2008-05-18 19:58:49 +00:00
|
|
|
$(GST_PLUGINS_BASE_LIBS) -lgstinterfaces-$(GST_MAJORMINOR) \
|
|
|
|
-lGLEW
|
2008-01-17 23:23:31 +00:00
|
|
|
libgstopengl_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
2004-08-09 20:14:51 +00:00
|
|
|
|