fixmydownloads/buildCodeCov.sh

9 lines
122 B
Bash
Executable File

#!/bin/sh
mkdir -p build && cd build
cmake -DCMAKE_BUILD_TYPE=Release -DENABLE_COVERAGE=On ..
make gcov
make lcov
cd ..