HarfBuzz text shaping engine
http://harfbuzz.github.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.1 KiB
55 lines
1.1 KiB
include Makefile.decl |
|
|
|
NULL = |
|
|
|
if HAVE_GLIB |
|
AM_CPPFLAGS = -I$(top_srcdir)/src/ $(GLIB_CFLAGS) $(GTHREAD_CFLAGS) |
|
LDADD = $(top_builddir)/src/libharfbuzz.la $(GLIB_LIBS) $(GTHREAD_LIBS) |
|
|
|
EXTRA_DIST += hb-test.h |
|
|
|
check_PROGRAMS = $(TEST_PROGS) |
|
noinst_PROGRAMS = $(TEST_PROGS) |
|
|
|
TEST_PROGS += \ |
|
test-blob \ |
|
test-buffer \ |
|
test-common \ |
|
test-font \ |
|
test-object \ |
|
test-shape \ |
|
test-unicode \ |
|
$(NULL) |
|
|
|
TEST_PROGS += \ |
|
test-ot-tag \ |
|
$(NULL) |
|
|
|
# Tests for header compilation |
|
TEST_PROGS += \ |
|
test-c \ |
|
test-cplusplus \ |
|
$(NULL) |
|
test_cplusplus_SOURCES = test-cplusplus.cc |
|
test_c_CPPFLAGS = $(AM_CPPFLAGS) |
|
test_cplusplus_CPPFLAGS = $(AM_CPPFLAGS) |
|
if HAVE_ICU |
|
test_c_CPPFLAGS += $(ICU_CFLAGS) |
|
test_cplusplus_CPPFLAGS += $(ICU_CFLAGS) |
|
endif |
|
if HAVE_FREETYPE |
|
test_c_CPPFLAGS += $(FREETYPE_CFLAGS) |
|
test_cplusplus_CPPFLAGS += $(FREETYPE_CFLAGS) |
|
# TODO replace freetype with other stuff in the following test |
|
test_object_CPPFLAGS = $(AM_CPPFLAGS) $(FREETYPE_CFLAGS) |
|
test_object_LIBS = $(LDADD) $(FREETYPE_LIBS) |
|
endif |
|
|
|
|
|
else |
|
check-am: |
|
@echo "You need to have glib support enabled to run the tests" |
|
@exit 77 |
|
endif |
|
|
|
-include $(top_srcdir)/git.mk
|
|
|