pixtool/Makefile

16 lines
236 B
Makefile

.PHONY: build tests install
build:
meson setup build
meson compile -C build
tests: build
build/pixtool-tests
install: tests
meson install -C build
check:
cppcheck --language=c++ --enable=all -q src \
--suppress=missingInclude