mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
423484ad26
We don't want this with MinGW.
23 lines
604 B
Makefile
23 lines
604 B
Makefile
libraries += libexpr-test-support
|
|
|
|
libexpr-test-support_NAME = libnixexpr-test-support
|
|
|
|
libexpr-test-support_DIR := $(d)
|
|
|
|
ifeq ($(INSTALL_UNIT_TESTS), yes)
|
|
libexpr-test-support_INSTALL_DIR := $(checklibdir)
|
|
else
|
|
libexpr-test-support_INSTALL_DIR :=
|
|
endif
|
|
|
|
libexpr-test-support_SOURCES := \
|
|
$(wildcard $(d)/tests/*.cc) \
|
|
$(wildcard $(d)/tests/value/*.cc)
|
|
|
|
libexpr-test-support_CXXFLAGS += $(libexpr-tests_EXTRA_INCLUDES)
|
|
|
|
libexpr-test-support_LIBS = \
|
|
libstore-test-support libutil-test-support \
|
|
libexpr libstore libutil
|
|
|
|
libexpr-test-support_LDFLAGS := $(THREAD_LDFLAGS) -lrapidcheck
|