mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 10:46:15 +02:00
9385383347
`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
.
19 lines
486 B
Makefile
19 lines
486 B
Makefile
libraries += libutil-test-support
|
|
|
|
libutil-test-support_NAME = libnixutil-test-support
|
|
|
|
libutil-test-support_DIR := $(d)
|
|
|
|
ifeq ($(INSTALL_UNIT_TESTS), yes)
|
|
libutil-test-support_INSTALL_DIR := $(checklibdir)
|
|
else
|
|
libutil-test-support_INSTALL_DIR :=
|
|
endif
|
|
|
|
libutil-test-support_SOURCES := $(wildcard $(d)/tests/*.cc)
|
|
|
|
libutil-test-support_CXXFLAGS += $(libutil-tests_EXTRA_INCLUDES)
|
|
|
|
libutil-test-support_LIBS = libutil
|
|
|
|
libutil-test-support_LDFLAGS := $(THREAD_LDFLAGS) -lrapidcheck
|