~piotr-sikora/libmemcached/fix-tests-on-openbsd

« back to all changes in this revision

Viewing changes to unittests/include.am

Merge in all current libmemcached work, plus restore older, working,
memslap.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# vim:ft=automake
2
 
# included from Top Level Makefile.am
3
 
# All paths should be given relative to the root
4
 
 
5
 
if HAVE_LIBGTEST
6
 
check_PROGRAMS += unittests/unittests
7
 
endif
8
 
 
9
 
unittests_unittests_SOURCES= \
10
 
                             unittests/main.cc \
11
 
                             unittests/strings.cc
12
 
 
13
 
unittests_unittests_CXXFLAGS= ${AM_CXXFLAGS} ${NO_WERROR} ${NO_EFF_CXX}
14
 
unittests_unittests_LDADD= \
15
 
                           libtest/libserver.la \
16
 
                           libmemcached/libmemcachedinternal.la \
17
 
                           ${TESTS_LDADDS} ${LTLIBGTEST}
18
 
# Shorthand
19
 
unit: check-TESTS
20