mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-13 09:46:16 +02:00
0fd8f542a8
Regression test for #7679
19 lines
484 B
Makefile
19 lines
484 B
Makefile
check: libexpr-tests_RUN
|
|
|
|
programs += libexpr-tests
|
|
|
|
libexpr-tests_NAME := libnixexpr-tests
|
|
|
|
libexpr-tests_DIR := $(d)
|
|
|
|
libexpr-tests_INSTALL_DIR :=
|
|
|
|
libexpr-tests_SOURCES := \
|
|
$(wildcard $(d)/*.cc) \
|
|
$(wildcard $(d)/value/*.cc)
|
|
|
|
libexpr-tests_CXXFLAGS += -I src/libexpr -I src/libutil -I src/libstore -I src/libexpr/tests
|
|
|
|
libexpr-tests_LIBS = libstore-tests libutils-tests libexpr libutil libstore libfetchers
|
|
|
|
libexpr-tests_LDFLAGS := $(GTEST_LIBS) -lgmock -lboost_context
|