gstreamer/tests/elements/Makefile.am
Víctor Manuel Jáquez Leal 6970dc1277 test: elements: remove spurious linkage
Element tests only need to link against gstreamer libraries.
2016-07-06 18:38:37 +02:00

20 lines
359 B
Makefile

noinst_PROGRAMS = \
test-vaapisink \
$(NULL)
TEST_CFLAGS = \
-DGST_USE_UNSTABLE_API \
$(GST_CFLAGS) \
$(GST_VIDEO_CFLAGS) \
$(NULL)
TEST_LIBS = \
$(GST_LIBS) \
$(GST_VIDEO_CFLAGS) \
$(NULL)
test_vaapisink_SOURCES = test-vaapisink.c
test_vaapisink_CFLAGS = $(TEST_CFLAGS)
test_vaapisink_LDADD = $(TEST_LIBS)
-include $(top_srcdir)/git.mk