2021-05-23 22:24:02 +08:00

8 lines
179 B
Bash

#!/bin/bash
[ ! -d build ] && mkdir build
cd build
cmake .. -G Ninja
ninja && ctest && ninja lcov && echo -e "\n\nPlease open ./build/report/index.html for the coverage report"