mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 00:08:07 +02:00
a6c17097d2
Sorry about that. Fixes https://github.com/NixOS/nix/issues/8616
15 lines
406 B
Makefile
15 lines
406 B
Makefile
programs += test-libstoreconsumer
|
|
|
|
test-libstoreconsumer_DIR := $(d)
|
|
|
|
# do not install
|
|
test-libstoreconsumer_INSTALL_DIR :=
|
|
|
|
test-libstoreconsumer_SOURCES := \
|
|
$(wildcard $(d)/*.cc) \
|
|
|
|
test-libstoreconsumer_CXXFLAGS += -I src/libutil -I src/libstore
|
|
|
|
test-libstoreconsumer_LIBS = libstore libutil
|
|
|
|
test-libstoreconsumer_LDFLAGS = -pthread $(SODIUM_LIBS) $(EDITLINE_LIBS) $(BOOST_LDFLAGS) $(LOWDOWN_LIBS)
|