The `unittest` library still contains a number of bare exceptions, which now result in warnings from the compliler. Patching the standard library to remove these warnings is outside the scope of this project, so we're going to ignore these warnings.
27 lines
698 B
Makefile
27 lines
698 B
Makefile
# Make does not offer a recursive wildcard function, so here's one:
|
|
rwildcard=$(wildcard $1$2) $(foreach d,$(wildcard $1*),$(call rwildcard,$d/,$2))
|
|
|
|
SOURCES=$(call rwildcard,src/,*.nim)
|
|
TEST_SOURCES=$(wildcard tests/*.nim)
|
|
TESTS=$(patsubst %.nim,bin/%,$(TEST_SOURCES))
|
|
|
|
.PHONY: build
|
|
build: test
|
|
nimble build
|
|
|
|
.PHONY: test
|
|
test:
|
|
#@for t in $(TESTS); do $$t; done
|
|
nimble --warning:BareExcept:off test
|
|
|
|
.PHONY: install
|
|
install: test
|
|
nimble install
|
|
|
|
diagrams: doc/vcard3.mmd
|
|
mmdc -i doc/vcard3.mmd -o doc/vcard3.png
|
|
|
|
# Target allowing for running individual tests.
|
|
bin/tests/%: tests/%.nim $(SOURCES)
|
|
nim --outdir:bin/tests --hints:off --warning:BareExcept:off c -r $(patsubst bin/%,%.nim,$@)
|