1
0
Fork 0
arangodb/Makefile.unittests

39 lines
979 B
Makefile

# -*- mode: Makefile; -*-
################################################################################
## unittests target
################################################################################
.TARGET: unittests
if ENABLE_BOOST_TEST
unittests:
@builddir@/UnitTests/test_suite --show_progress
else
unittests:
@echo "enable unit-testing with 'configure --with-boost-test'"
endif
################################################################################
## tests
################################################################################
if ENABLE_BOOST_TEST
noinst_PROGRAMS = UnitTests/test_suite
UnitTests_test_suite_LDADD = -L@top_builddir@ -lavocado -lboost_unit_test_framework
UnitTests_test_suite_DEPENDENCIES = @top_builddir@/libavocado.a
UnitTests_test_suite_SOURCES = \
UnitTests/Runner.cpp \
UnitTests/Philadelphia/string-buffer-test.cpp \
UnitTests/Jutland/StringBufferTest.cpp \
UnitTests/Jutland/StringUtilsTest.cpp
endif