aboutsummaryrefslogtreecommitdiff
path: root/tests/unit/libstore/local.mk
blob: fb7385ec179a4a625b93f956fc6870fc80ffafc7 (plain)
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
27
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)