mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
32 lines
709 B
Makefile
32 lines
709 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)
|
||
|
|
||
|
ifeq ($(INSTALL_UNIT_TESTS), yes)
|
||
|
libstore-tests_INSTALL_DIR := $(checkbindir)
|
||
|
else
|
||
|
libstore-tests_INSTALL_DIR :=
|
||
|
endif
|
||
|
|
||
|
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)
|