mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-23 22:46:16 +02:00
ecd3e4ebd7
Also put proper comparison methods on `DerivedPath` and `NixStringContextElem`, which is needed for the tests but good in general.
29 lines
541 B
Makefile
29 lines
541 B
Makefile
check: libutil-tests_RUN
|
|
|
|
programs += libutil-tests
|
|
|
|
libutil-tests-exe_NAME = libnixutil-tests
|
|
|
|
libutil-tests-exe_DIR := $(d)
|
|
|
|
libutil-tests-exe_INSTALL_DIR :=
|
|
|
|
libutil-tests-exe_LIBS = libutil-tests
|
|
|
|
libutil-tests-exe_LDFLAGS := $(GTEST_LIBS)
|
|
|
|
libraries += libutil-tests
|
|
|
|
libutil-tests_NAME = libnixutil-tests
|
|
|
|
libutil-tests_DIR := $(d)
|
|
|
|
libutil-tests_INSTALL_DIR :=
|
|
|
|
libutil-tests_SOURCES := $(wildcard $(d)/*.cc)
|
|
|
|
libutil-tests_CXXFLAGS += -I src/libutil
|
|
|
|
libutil-tests_LIBS = libutil
|
|
|
|
libutil-tests_LDFLAGS := -lrapidcheck $(GTEST_LIBS)
|