ccm/Makefile

14 lines
230 B
Makefile

.PHONY: build install check doc
build:
cmake -B build
cmake --build build
install: build
sudo cmake --install build
check:
@cppcheck --enable=all -q ccm lib \
--suppress=missingIncludeSystem \
--suppress=unusedFunction