Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 808 Bytes

README.md

File metadata and controls

28 lines (21 loc) · 808 Bytes

C Integration Utils

ci codecov

Modified: 2022-01

Scalable templating for C project development with gtest and gcov and codecov.io. This repository merges utility from bilke/cmake-modules and jhbell/cmake-gcov.

Quickstart

Install gcovr util for xml generation

python3 -m pip install gcovr

Build with CMake

mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Debug
make -j2

Run tests and generate coverage report

make cov