mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
5ff55c7a30
Original commit message from CVS: * tests/icles/.cvsignore: * tests/icles/Makefile.am: * tests/icles/test-textoverlay.c: Add a dumb little test for textoverlay alignments.
24 lines
618 B
Makefile
24 lines
618 B
Makefile
if USE_X
|
|
X_TESTS = stress-xoverlay
|
|
|
|
stress_xoverlay_SOURCES = stress-xoverlay.c
|
|
stress_xoverlay_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(X_CFLAGS)
|
|
stress_xoverlay_LDFLAGS = $(GST_LIBS) $(X_LIBS) $(LIBM)
|
|
stress_xoverlay_LDADD = \
|
|
$(top_builddir)/gst-libs/gst/interfaces/libgstinterfaces-$(GST_MAJORMINOR).la
|
|
else
|
|
X_TESTS =
|
|
endif
|
|
|
|
if USE_PANGO
|
|
PANGO_TESTS = test-textoverlay
|
|
|
|
test_textoverlay_SOURCES = test-textoverlay.c
|
|
test_textoverlay_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
|
test_textoverlay_LDFLAGS = $(GST_LIBS) $(LIBM)
|
|
|
|
else
|
|
PANGO_TESTS =
|
|
endif
|
|
|
|
noinst_PROGRAMS = $(X_TESTS) $(PANGO_TESTS)
|