leetcode/justfile
2025-05-21 14:26:13 +03:00

9 lines
292 B
Makefile

build:
cmake -B ./build -S .
cmake --build ./build --config Debug --target all -j 20 --
test: build
ctest -j10 -C Debug -T test --test-dir ./build --output-on-failure
problem PROBLEM: build
ctest -j10 -C Debug -T test --test-dir ./build --output-on-failure -R ^P{{PROBLEM}}