mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 12:41:05 +00:00
6970dc1277
Element tests only need to link against gstreamer libraries.
20 lines
359 B
Makefile
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
|