forked from lix-project/lix
b23273f6a2
This is good in general (see how the other libraries also have long had
it, since 49fe9592a4
) but in particular
needed to fix the NetBSD build.
20 lines
477 B
Makefile
20 lines
477 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 := -pthread -lrapidcheck
|