pixtool/Makefile

20 lines
312 B
Makefile

.PHONY: build tests install i18n
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
i18n:
lupdate src -ts i18n/pix_en.ts
lupdate src -ts i18n/pix_fr.ts