diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2022-01-19 23:30:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-19 23:30:33 (GMT) |
commit | d7c360df67cdaa4ea7e08076334a45f6ed859a90 (patch) | |
tree | 1b1e4018fbb8a61326b41f015ea9715f034d64d7 /config/sanitizer/code-coverage.cmake | |
parent | 407c52f3977df9aaf7a27a3343ea146c3f497a00 (diff) | |
download | hdf5-d7c360df67cdaa4ea7e08076334a45f6ed859a90.zip hdf5-d7c360df67cdaa4ea7e08076334a45f6ed859a90.tar.gz hdf5-d7c360df67cdaa4ea7e08076334a45f6ed859a90.tar.bz2 |
Fix cmake dynamic analysis on windows (#1377)
Fix sanitizer flag form on windows
Add search paths to windows code-coverage
Diffstat (limited to 'config/sanitizer/code-coverage.cmake')
-rw-r--r-- | config/sanitizer/code-coverage.cmake | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/config/sanitizer/code-coverage.cmake b/config/sanitizer/code-coverage.cmake index c79aeac..e71bfd7 100644 --- a/config/sanitizer/code-coverage.cmake +++ b/config/sanitizer/code-coverage.cmake @@ -80,10 +80,17 @@ option( OFF) # Programs -find_program(LLVM_COV_PATH llvm-cov) -find_program(LLVM_PROFDATA_PATH llvm-profdata) -find_program(LCOV_PATH lcov) -find_program(GENHTML_PATH genhtml) +if(WIN32) + find_program(LLVM_COV_PATH llvm-cov PATHS ENV VS2019INSTALLDIR PATH_SUFFIXES "VC/Tools/Llvm/x64/bin") + find_program(LLVM_PROFDATA_PATH llvm-profdata PATHS ENV VS2019INSTALLDIR PATH_SUFFIXES "VC/Tools/Llvm/x64/bin") + find_program(LCOV_PATH lcov PATHS ENV VS2019INSTALLDIR PATH_SUFFIXES "VC/Tools/Llvm/x64/bin") + find_program(GENHTML_PATH genhtml PATHS ENV VS2019INSTALLDIR PATH_SUFFIXES "VC/Tools/Llvm/x64/bin") +else() + find_program(LLVM_COV_PATH llvm-cov) + find_program(LLVM_PROFDATA_PATH llvm-profdata) + find_program(LCOV_PATH lcov) + find_program(GENHTML_PATH genhtml) +endif() # Variables set(CMAKE_COVERAGE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/ccov) |