This repository has been archived on 2024-03-07. You can view files and clone it, but cannot push or open issues/pull-requests.
pix-draw-studio/Makefile

17 lines
280 B
Makefile

.PHONY: build test
build:
cmake -B build -DCMAKE_BUILD_TYPE=Debug
cmake --build build
test: build
build/tests/pix-test
install: test
cmake --install build
check:
@cppcheck --enable=all language=c++ -q src tests \
--suppress=missingInclude \
--suppress=unusedFunction \