Compare commits

...

2 Commits

2 changed files with 5 additions and 3 deletions

View File

@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.0)
project(myx-cmake VERSION 0.4.0 LANGUAGES)
project(myx-cmake VERSION 0.4.1 LANGUAGES)
include(GNUInstallDirs)
file(WRITE ${CMAKE_SOURCE_DIR}/MyxCMake/MyxCMakeConfigVersion.cmake

View File

@ -17,8 +17,10 @@ function(myx_cmake_code_coverage target)
add_custom_target(
${target}-coverage
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
COMMAND ${LCOV_EXE} --test-name ${target} --output "${target}.lcov"
--capture --directory ${CMAKE_BINARY_DIR})
COMMAND ${LCOV_EXE} --test-name ${target} --output "${target}.lcov" --capture
--exclude "/usr/\\\*"
--exclude "${CMAKE_BINARY_DIR}/\\\*"
--directory ${CMAKE_BINARY_DIR})
add_dependencies(${target}-coverage ${target})
if(GENHTML_EXE)