-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathFindGcovr.cmake
More file actions
63 lines (55 loc) · 2.17 KB
/
Copy pathFindGcovr.cmake
File metadata and controls
63 lines (55 loc) · 2.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#
# Copyright 2023 Huawei Technologies Co., Ltd.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
#[===================================================================[
Find the gcovr utility to parse tracing info generated by gcov
Read-only output variables:
GCOV_COMMAND
command to run gcov (may comprise multiple words - it is a CMake list)
#]===================================================================]
# prefer gcovr installed via pip, as it may be more recent and also allows
# user-local installations: we need python3 explicitly accessible
if( NOT Python3_FOUND )
find_package( Python3 )
endif()
if( Python3_FOUND )
# test wether gcovr is already installed: do not install it if not;
# let the user choose which installation method (distro package manager,
# pip3 global/local, custom)
execute_process(
COMMAND ${Python3_EXECUTABLE} -m gcovr --help
RESULT_VARIABLE PIP_GCOVR_FOUND
OUTPUT_QUIET
ERROR_QUIET
)
if( NOT PIP_GCOVR_FOUND STREQUAL "0" )
message( STATUS "gcovr not installed via pip (preferred),"
"you may install it with: ${Python3_EXECUTABLE} -m pip install gcovr"
)
else()
set( GCOV_COMMAND ${Python3_EXECUTABLE} -m gcovr )
endif()
endif()
# if not found via pip, then look for a "standalone" executable in standard paths
if( NOT GCOV_COMMAND )
find_program( GCOV_COMMAND NAMES gcovr )
endif()
if( NOT GCOV_COMMAND )
message( WARNING "gcovr was found neither as a Python3 module"
"nor as standalone executable within system directories"
)
endif()
include( FindPackageHandleStandardArgs )
find_package_handle_standard_args( Gcovr REQUIRED_VARS GCOV_COMMAND )