summaryrefslogtreecommitdiffstats
path: root/src/cmake/cmake.d/03-macros.cmake
diff options
context:
space:
mode:
authorScott Murray <scott.murray@konsulko.com>2020-09-18 15:51:14 -0400
committerScott Murray <scott.murray@konsulko.com>2020-09-18 16:20:35 -0400
commit7c03348d9c2de43684fa69c3c9e227b25daceaaa (patch)
treedcffc1fd8ceba61a21a14ee6ac8696e7b7ae2c30 /src/cmake/cmake.d/03-macros.cmake
parenta357a6af0cf515883dfa26fd2cb80ac055a491de (diff)
Add source and coverage information installation to debug and coverage widgets. The source tree will be installed to "src" in debug and coverage widgets, with some non-source directories like doc/docs excluded. The gcc produced "gcno" files for generating coverage reports will be installed to "coverage" in coverage widgets. A different directory than that for source is used, as the gcno files are in the build output hierarchy, which is not the same as the source tree hierarchy when using CMake. This hierarchy needs to be preserved to be able to use gcc's coverage support. As part of this scheme, an environment file containing values for the GCOV_PREFIX and GCOV_PREFIX_STRIP variables is generated and added to "coverage". The latter variable can only be calculated during widget build, and is essential for abstracting the build directory location and enabling gcov usage on target. Bug-AGL: SPEC-3589 Signed-off-by: Scott Murray <scott.murray@konsulko.com> Change-Id: I258fff0295444bb257d24d442798347728ee7875
Diffstat (limited to 'src/cmake/cmake.d/03-macros.cmake')
-rw-r--r--src/cmake/cmake.d/03-macros.cmake18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/cmake/cmake.d/03-macros.cmake b/src/cmake/cmake.d/03-macros.cmake
index 0b4b276..32182f9 100644
--- a/src/cmake/cmake.d/03-macros.cmake
+++ b/src/cmake/cmake.d/03-macros.cmake
@@ -1,5 +1,6 @@
###########################################################################
# Copyright 2015, 2016, 2017 IoT.bzh
+# Copyright (C) 2020 Konsulko Group
#
# author: Fulup Ar Foll <fulup@iot.bzh>
# contrib: Romain Forlot <romain.forlot@iot.bzh>
@@ -652,6 +653,23 @@ You need a config.xml template: please specify WIDGET_CONFIG_TEMPLATE correctly.
)
list(APPEND test_widget_files_items ${PROJECT_PKG_TEST_DIR}/config.xml)
+ IF(${CMAKE_BUILD_TYPE} MATCHES DEBUG OR ${CMAKE_BUILD_TYPE} MATCHES COVERAGE)
+ # populate wgt/src
+ add_custom_command(OUTPUT ${PROJECT_PKG_BUILD_DIR}/src
+ COMMAND mkdir -p ${PROJECT_PKG_BUILD_DIR}/src
+ COMMAND tar -C ${CMAKE_SOURCE_DIR} -cf - -X ${PROJECT_APP_TEMPLATES_DIR}/cmake/src_exclude . | tar -C ${PROJECT_PKG_BUILD_DIR}/src -xf -)
+ list(APPEND widget_files_items ${PROJECT_PKG_BUILD_DIR}/src)
+ ENDIF()
+
+ IF(${CMAKE_BUILD_TYPE} MATCHES COVERAGE)
+ # populate wgt/coverage
+ configure_file(${PROJECT_APP_TEMPLATES_DIR}/cmake/gcov-helper.sh.in ${CMAKE_BINARY_DIR}/gcov-helper.sh @ONLY)
+ add_custom_command(OUTPUT ${PROJECT_PKG_BUILD_DIR}/coverage
+ COMMAND mkdir -p ${PROJECT_PKG_BUILD_DIR}/coverage
+ COMMAND /bin/sh ${CMAKE_BINARY_DIR}/gcov-helper.sh)
+ list(APPEND widget_files_items ${PROJECT_PKG_BUILD_DIR}/coverage)
+ ENDIF()
+
# add test launcher
add_custom_command(OUTPUT ${PROJECT_PKG_TEST_DIR}/bin
COMMAND mkdir -p ${PROJECT_PKG_TEST_DIR}/bin