~drizzle-trunk/drizzle/development

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
# 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

unittests_unittests_SOURCES = \
			     unittests/atomics_test.cc \
			     unittests/calendar_test.cc \
					 unittests/date_test.cc \
					 unittests/date_time_test.cc \
					 unittests/temporal_generator.cc \
			     unittests/main.cc \
					 unittests/micro_timestamp_test.cc \
					 unittests/nano_timestamp_test.cc \
			     unittests/pthread_atomics_test.cc \
					 unittests/temporal_format_test.cc \
					 unittests/temporal_interval_test.cc \
					 unittests/time_test.cc \
					 unittests/timestamp_test.cc

unittests_unittests_LDADD= \
  $(filter-out drizzled/main.$(OBJEXT), ${am_drizzled_drizzled_OBJECTS}) \
  ${drizzled_drizzled_LDADD} ${LTLIBGTEST}
endif