leetcode/justfile
2025-06-23 00:08:14 +03:00

9 lines
326 B
Makefile

build:
cmake -B ./build -S . -DCMAKE_EXPORT_COMPILE_COMMANDS=1
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}}