Compare commits

..

No commits in common. "58573cebfc86275154ee0b94e3d02580ccc5a74b" and "be911b4fd99a9aa1e08be79be30cbaef6a30ba9c" have entirely different histories.

2 changed files with 3 additions and 5 deletions

View File

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

View File

@ -17,10 +17,8 @@ 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
--exclude "/usr/\\\*"
--exclude "${CMAKE_BINARY_DIR}/\\\*"
--directory ${CMAKE_BINARY_DIR})
COMMAND ${LCOV_EXE} --test-name ${target} --output "${target}.lcov"
--capture --directory ${CMAKE_BINARY_DIR})
add_dependencies(${target}-coverage ${target})
if(GENHTML_EXE)