28 lines
615 B
Makefile
28 lines
615 B
Makefile
|
check: libstore-tests_RUN
|
||
|
|
||
|
programs += libstore-tests
|
||
|
|
||
|
libstore-tests_NAME = libnixstore-tests
|
||
|
|
||
|
libstore-tests_ENV := _NIX_TEST_UNIT_DATA=$(d)/data
|
||
|
|
||
|
libstore-tests_DIR := $(d)
|
||
|
|
||
|
libstore-tests_INSTALL_DIR :=
|
||
|
|
||
|
libstore-tests_SOURCES := $(wildcard $(d)/*.cc)
|
||
|
|
||
|
libstore-tests_EXTRA_INCLUDES = \
|
||
|
-I tests/unit/libstore-support \
|
||
|
-I tests/unit/libutil-support \
|
||
|
-I src/libstore \
|
||
|
-I src/libutil
|
||
|
|
||
|
libstore-tests_CXXFLAGS += $(libstore-tests_EXTRA_INCLUDES)
|
||
|
|
||
|
libstore-tests_LIBS = \
|
||
|
libstore-test-support libutil-test-support \
|
||
|
libstore libutil
|
||
|
|
||
|
libstore-tests_LDFLAGS := -lrapidcheck $(GTEST_LIBS)
|