I'm using Intel Parallel Studio XE 2015 Composer Edition C++ on Windows and MS Visual Studio 2010.
I have a Visual Studio Solution with several Projects. I added /Qcov-gen to several projects which resulted in several .spi files be generated at compile-time, one for each project.
When I run codecov.exe (using the command-line), I have to specify one .spi file and codecov.exe generates a report that covers only the source files in the project that corresponds to the .spi file I specified.
My question is: how can I generate a code coverage report that includes the source files of several of my projects in my solution?
Thank you in advance!