forked from lix-project/lix
Sergei Trofimovich
d7d6fe44d6
In https://github.com/NixOS/nix/pull/5350 we noticed link failures pkgsStatic.nixUnstable. Adding explicit dependency on libutil fixes libstore-tests linking.
16 lines
302 B
Makefile
16 lines
302 B
Makefile
check: libstore-tests_RUN
|
|
|
|
programs += libstore-tests
|
|
|
|
libstore-tests_DIR := $(d)
|
|
|
|
libstore-tests_INSTALL_DIR :=
|
|
|
|
libstore-tests_SOURCES := $(wildcard $(d)/*.cc)
|
|
|
|
libstore-tests_CXXFLAGS += -I src/libstore -I src/libutil
|
|
|
|
libstore-tests_LIBS = libstore libutil
|
|
|
|
libstore-tests_LDFLAGS := $(GTEST_LIBS)
|