gstreamer/tests/Makefile.am

111 lines
2.6 KiB
Makefile
Raw Normal View History

noinst_PROGRAMS = \
test-decode \
test-display \
test-surfaces \
test-windows \
test-subpicture \
$(NULL)
2010-03-26 08:10:23 +00:00
if USE_GLX
noinst_PROGRAMS += \
test-textures \
2010-03-25 17:28:49 +00:00
$(NULL)
2010-03-26 08:10:23 +00:00
endif
2010-03-25 17:28:49 +00:00
TEST_CFLAGS = \
-DGST_USE_UNSTABLE_API \
-I$(top_srcdir)/gst-libs \
-I$(top_builddir)/gst-libs \
$(LIBVA_CFLAGS) \
$(GST_CFLAGS) \
$(NULL)
TEST_LIBS = \
$(LIBVA_LIBS) \
$(GST_LIBS) \
2010-03-26 08:10:23 +00:00
$(top_builddir)/gst-libs/gst/vaapi/libgstvaapi-@GST_MAJORMINOR@.la
if USE_DRM
TEST_CFLAGS += $(LIBVA_DRM_CFLAGS)
TEST_LIBS += \
$(LIBVA_DRM_LIBS) \
$(top_builddir)/gst-libs/gst/vaapi/libgstvaapi-drm-@GST_MAJORMINOR@.la
endif
if USE_X11
TEST_CFLAGS += $(X11_CFLAGS)
TEST_LIBS += \
$(LIBVA_X11_LIBS) \
$(X11_LIBS) \
2010-03-26 08:10:23 +00:00
$(top_builddir)/gst-libs/gst/vaapi/libgstvaapi-x11-@GST_MAJORMINOR@.la
endif
2010-03-26 08:10:23 +00:00
if USE_GLX
TEST_CFLAGS += $(X11_CFLAGS) $(GL_CFLAGS)
TEST_LIBS += \
$(LIBVA_GLX_LIBS) \
$(X11_LIBS) \
$(GL_LIBS) \
$(top_builddir)/gst-libs/gst/vaapi/libgstvaapi-glx-@GST_MAJORMINOR@.la
2010-03-26 08:10:23 +00:00
endif
2010-03-25 17:28:49 +00:00
2012-07-23 10:56:33 +00:00
if USE_WAYLAND
TEST_CFLAGS += $(WAYLAND_CFLAGS)
TEST_LIBS += \
$(LIBVA_WAYLAND_LIBS) \
$(WAYLAND_LIBS) \
$(top_builddir)/gst-libs/gst/vaapi/libgstvaapi-wayland-@GST_MAJORMINOR@.la
endif
2013-01-10 10:22:38 +00:00
test_utils_dec_source_c = \
decoder.c \
2012-12-17 10:51:17 +00:00
test-h264.c \
test-jpeg.c \
test-mpeg2.c \
test-mpeg4.c \
test-vc1.c \
$(NULL)
2013-01-10 10:22:38 +00:00
test_utils_dec_source_h = $(test_utils_dec_source_c:%.c=%.h) test-decode.h
2013-01-10 10:22:38 +00:00
test_utils_source_c = image.c output.c
test_utils_source_h = image.h output.h
2013-01-10 10:22:38 +00:00
noinst_LTLIBRARIES = libutils.la libutils_dec.la
libutils_la_SOURCES = $(test_utils_source_c)
libutils_la_CFLAGS = $(TEST_CFLAGS)
2013-01-10 10:22:38 +00:00
libutils_dec_la_SOURCES = $(test_utils_dec_source_c)
libutils_dec_la_CFLAGS = $(TEST_CFLAGS)
2013-01-10 10:22:38 +00:00
test_decode_SOURCES = test-decode.c
test_decode_CFLAGS = $(TEST_CFLAGS)
2013-01-10 10:22:38 +00:00
test_decode_LDADD = libutils.la libutils_dec.la $(TEST_LIBS)
test_display_SOURCES = test-display.c
test_display_CFLAGS = $(TEST_CFLAGS)
test_display_LDADD = libutils.la $(TEST_LIBS)
test_surfaces_SOURCES = test-surfaces.c
test_surfaces_CFLAGS = $(TEST_CFLAGS)
test_surfaces_LDADD = libutils.la $(TEST_LIBS)
test_subpicture_SOURCES = test-subpicture.c test-subpicture-data.c
test_subpicture_CFLAGS = $(TEST_CFLAGS)
test_subpicture_LDADD = libutils.la $(TEST_LIBS)
test_windows_SOURCES = test-windows.c
test_windows_CFLAGS = $(TEST_CFLAGS)
test_windows_LDADD = libutils.la $(TEST_LIBS)
2010-03-25 17:28:49 +00:00
test_textures_SOURCES = test-textures.c
test_textures_CFLAGS = $(TEST_CFLAGS)
test_textures_LDADD = libutils.la $(TEST_LIBS)
2010-01-25 15:04:10 +00:00
2010-05-03 22:42:46 +00:00
EXTRA_DIST = \
2013-01-10 10:22:38 +00:00
test-subpicture-data.h \
$(test_utils_dec_source_h) \
$(test_utils_source_h) \
2010-05-03 22:42:46 +00:00
$(NULL)
2010-03-29 14:40:26 +00:00
2010-01-25 15:04:10 +00:00
# Extra clean files so that maintainer-clean removes *everything*
MAINTAINERCLEANFILES = Makefile.in