8724a16452
Add tests/test-text-perf, which allows testing text performance as a function of the length of text strings and font size.
18 lines
481 B
Makefile
18 lines
481 B
Makefile
noinst_PROGRAMS = \
|
|
test-text \
|
|
test-picking \
|
|
test-text-perf
|
|
|
|
INCLUDES = -I$(top_srcdir)/ -I$(top_srcdir)/clutter -I$(top_builddir)/clutter
|
|
LDADD = $(top_builddir)/clutter/libclutter-@CLUTTER_FLAVOUR@-@CLUTTER_MAJORMINOR@.la
|
|
AM_CFLAGS = \
|
|
$(CLUTTER_CFLAGS) \
|
|
$(MAINTAINER_CFLAGS) \
|
|
-DTESTS_DATA_DIR=\""$(top_srcdir)/tests/data/"\"
|
|
AM_LDFLAGS = $(CLUTTER_LIBS)
|
|
|
|
test_text_SOURCES = test-text.c
|
|
test_picking_SOURCES = test-picking.c
|
|
test_text_perf_SOURCES = test-text-perf.c
|
|
|