1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# vim:ft=automake
# included from Top Level Makefile.am
# All paths should be given relative to the root
if HAVE_LIBGTEST
check_PROGRAMS += unittests/unittests
endif
noinst_HEADERS += \
unittests/plugin/plugin_stubs.h \
unittests/temporal_generator.h
EXTRA_DIST += \
unittests/client_server.c
unit: unittests/unittests
unittests/unittests
# Removed temporal_interval_test, it is not cleaning up after itself. -Brian
#
# unittests/temporal_interval_test.cc
#
unittests_unittests_SOURCES = \
unittests/atomics_test.cc \
unittests/calendar_test.cc \
unittests/date_test.cc \
unittests/date_time_test.cc \
unittests/generators.cc \
unittests/main.cc \
unittests/micro_timestamp_test.cc \
unittests/nano_timestamp_test.cc \
unittests/option_context.cc \
unittests/plugin/authentication_test.cc \
unittests/plugin/client_test.cc \
unittests/plugin/error_message_test.cc \
unittests/pthread_atomics_test.cc \
unittests/table_identifier.cc \
unittests/temporal_format_test.cc \
unittests/temporal_generator.cc \
unittests/time_test.cc \
unittests/timestamp_test.cc \
unittests/utf8_test.cc
unittests_unittests_LDADD= \
$(filter-out drizzled/main.$(OBJEXT), ${am_drizzled_drizzled_OBJECTS}) \
${drizzled_drizzled_LDADD} ${LTLIBGTEST} ${BOOST_LIBS}
|