diff options
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 11dde62..2582881 100644 --- a/Makefile.am +++ b/Makefile.am @@ -41,6 +41,7 @@ noinst_HEADERS = \ src/renderer.h \ src/source-parser.h \ src/template-parser.h \ + src/utf8.h \ src/utils.h \ $(NULL) @@ -94,6 +95,7 @@ libblogc_la_LIBADD = \ libblogc_utils_la_SOURCES = \ + src/utf8.c \ src/utils.c \ $(NULL) @@ -277,6 +279,7 @@ check_PROGRAMS += \ tests/check_renderer \ tests/check_source_parser \ tests/check_template_parser \ + tests/check_utf8 \ tests/check_utils \ $(NULL) @@ -408,6 +411,23 @@ tests_check_template_parser_LDADD = \ libblogc_utils.la \ $(NULL) +tests_check_utf8_SOURCES = \ + tests/check_utf8.c \ + $(NULL) + +tests_check_utf8_CFLAGS = \ + $(CMOCKA_CFLAGS) \ + $(NULL) + +tests_check_utf8_LDFLAGS = \ + -no-install \ + $(NULL) + +tests_check_utf8_LDADD = \ + $(CMOCKA_LIBS) \ + libblogc_utils.la \ + $(NULL) + tests_check_utils_SOURCES = \ tests/check_utils.c \ $(NULL) |