Alexander Haase
Alexander Haase
Unfortunately I didn't find a way to find the linker and compiler to be used this early at configuration time, so I needed to get these by the list of...
@Gjacquenot I can't reproduce your log. First I needed to change the code to get it working with CMake 3.8.2: ```diff --- ../foo.txt 2017-07-21 17:20:42.000000000 +0200 +++ ../CMakeLists.txt 2017-07-21 17:21:40.000000000...
My fault, sorry. I think some time ago CMake itself didn't know how to handle targets with object libraries as only sources. There are two problems: 1. You have to...
How did you include `CMake-codecov`? Afaik variables shouldn't cascade back to the callee's CMake file scope, unless the variable is cached explicitly - which is not the case.
I'm not sure about merging this, as `gcovr` seems to be unrelated to the `gcov` + `lcov`, so it might be better placed in its own repository. @jprotze what's your...
Could you provide a patch for this issue? I can reproduce the issue, but unfortunately I'm not familiar with ninja.
If your compiler is clang >= 3.5, [FindGcov should use llvm-cov](https://github.com/RWTH-ELP/CMake-codecov/blob/master/cmake/FindGcov.cmake#L63) by default. The [llvm-cov-wrapper](https://github.com/RWTH-ELP/CMake-codecov/blob/master/cmake/llvm-cov-wrapper) will be used for compatibility with Lcov. Can you give me some sample output to...
At the moment this CMake module is intended to generate coverage reports for tools which understand gcov data only, like lcov and online tools like [codecov.io](https://codecov.io). I think if the...
Ok. As far as I understand we need a new *mode* for the codecov scripts to handle a) native llvm-cov and b) exporting the llvm-cov reports as HTML instead of...
I'll try to generalize the modules, so we can plug different analyzing-tools. Then we can investigate how to generate the reports for llvm-cov in XCode. ;)