This repository has been archived on 2026-01-12. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
logging/makefile

16 lines
151 B
Makefile

.PHONY:format
format:
bash script/format.sh
build:
cmake -S . -B build
cmake --build build
test: build
cd build && ctest
clean:
rm -rf build