mirror of
https://github.com/NixOS/nix.git
synced 2025-11-10 20:46:01 +01:00
`make check` was reverted too soon. The hacking guide wasn't brought
up to date with the new workflow, and it's not clear how to use
meson for everything.
This reverts commit 6f3045c2a2.
21 lines
539 B
Makefile
21 lines
539 B
Makefile
libraries += libstore-test-support
|
|
|
|
libstore-test-support_NAME = libnixstore-test-support
|
|
|
|
libstore-test-support_DIR := $(d)
|
|
|
|
ifeq ($(INSTALL_UNIT_TESTS), yes)
|
|
libstore-test-support_INSTALL_DIR := $(checklibdir)
|
|
else
|
|
libstore-test-support_INSTALL_DIR :=
|
|
endif
|
|
|
|
libstore-test-support_SOURCES := $(wildcard $(d)/tests/*.cc)
|
|
|
|
libstore-test-support_CXXFLAGS += $(libstore-tests_EXTRA_INCLUDES)
|
|
|
|
libstore-test-support_LIBS = \
|
|
libutil-test-support \
|
|
libstore libutil
|
|
|
|
libstore-test-support_LDFLAGS := $(THREAD_LDFLAGS) -lrapidcheck
|