This change fixes an incorrect directory exception in the code coverage CMake module. An EXCLUDE parameter of the setup_target_for_coverage_lcov() function didn't work. The folders were not excluded. The reason is that gcov requires to wrap each excludes in quotes, but CMake removes double-quotes. Therefore the solution is to use single-quotes.
This change fixes an incorrect directory exception in the code coverage CMake module. An
EXCLUDE
parameter of thesetup_target_for_coverage_lcov()
function didn't work. The folders were not excluded. The reason is thatgcov
requires to wrap each excludes in quotes, but CMake removes double-quotes. Therefore the solution is to use single-quotes.