From 7127defbaa3701fc3444feb3233401e2829fc1b6 Mon Sep 17 00:00:00 2001 From: "Rafael G. Martins" Date: Sat, 24 Oct 2015 18:47:41 -0200 Subject: datetime-parser: initial implementation. not used yet --- Makefile.am | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index e64eea9..4a28b8b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -25,6 +25,7 @@ MAINTAINERCLEANFILES = \ noinst_HEADERS = \ src/content-parser.h \ + src/datetime-parser.h \ src/file.h \ src/error.h \ src/loader.h \ @@ -51,6 +52,7 @@ check_PROGRAMS = \ libblogc_la_SOURCES = \ src/content-parser.c \ + src/datetime-parser.c \ src/file.c \ src/error.c \ src/loader.c \ @@ -141,6 +143,7 @@ if USE_CMOCKA check_PROGRAMS += \ tests/check_content_parser \ + tests/check_datetime_parser \ tests/check_error \ tests/check_loader \ tests/check_renderer \ @@ -202,6 +205,23 @@ tests_check_content_parser_LDADD = \ libblogc.la \ $(NULL) +tests_check_datetime_parser_SOURCES = \ + tests/check_datetime_parser.c \ + $(NULL) + +tests_check_datetime_parser_CFLAGS = \ + $(CMOCKA_CFLAGS) \ + $(NULL) + +tests_check_datetime_parser_LDFLAGS = \ + -no-install \ + $(NULL) + +tests_check_datetime_parser_LDADD = \ + $(CMOCKA_LIBS) \ + libblogc.la \ + $(NULL) + tests_check_renderer_SOURCES = \ tests/check_renderer.c \ $(NULL) -- cgit v1.2.3-18-g5258