mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 08:46:16 +02:00
16 lines
346 B
Makefile
16 lines
346 B
Makefile
|
check: libexpr-tests_RUN
|
||
|
|
||
|
programs += libexpr-tests
|
||
|
|
||
|
libexpr-tests_DIR := $(d)
|
||
|
|
||
|
libexpr-tests_INSTALL_DIR :=
|
||
|
|
||
|
libexpr-tests_SOURCES := $(wildcard $(d)/*.cc)
|
||
|
|
||
|
libexpr-tests_CXXFLAGS += -I src/libexpr -I src/libutil -I src/libstore -I src/libexpr/tests
|
||
|
|
||
|
libexpr-tests_LIBS = libexpr libutil libstore
|
||
|
|
||
|
libexpr-tests_LDFLAGS := $(GTEST_LIBS) -lgmock
|