First commit of the basic game ready to work on.
This commit is contained in:
parent
801a05d1ab
commit
a68cce5cbb
41 changed files with 1815 additions and 0 deletions
13
scripts/coverage_report.ps1
Normal file
13
scripts/coverage_report.ps1
Normal file
|
@ -0,0 +1,13 @@
|
|||
rm -recurse -force coverage/*
|
||||
cp *.cpp,*.hpp,*.rl builddir
|
||||
|
||||
. .venv/Scripts/activate
|
||||
|
||||
rm -recurse -force coverage
|
||||
cp scripts\gcovr_patched_coverage.py .venv\Lib\site-packages\gcovr\coverage.py
|
||||
|
||||
gcovr -o coverage/ --html --html-details --html-theme github.dark-blue --gcov-ignore-errors all --gcov-ignore-parse-errors negative_hits.warn_once_per_file -e builddir/subprojects -e builddir -e subprojects -j 10 .
|
||||
|
||||
rm *.gcov.json.gz
|
||||
|
||||
start .\coverage\coverage_details.html
|
Loading…
Add table
Add a link
Reference in a new issue