summaryrefslogtreecommitdiffstats
path: root/Modules/Compiler/MSVC-CXX.cmake
diff options
context:
space:
mode:
authorHanjiang Yu <42531996+de1acr0ix@users.noreply.github.com>2020-01-19 08:39:18 (GMT)
committerBrad King <brad.king@kitware.com>2020-01-27 18:59:05 (GMT)
commitf6f4eb090714df50b77b164bbd5bb65a8ce59cbc (patch)
treedeb85ea2868c93016388410f8b22750aeb7323f3 /Modules/Compiler/MSVC-CXX.cmake
parent33e7bd66c09ee51edbbccfc1014813e30d80ec5f (diff)
downloadCMake-f6f4eb090714df50b77b164bbd5bb65a8ce59cbc.zip
CMake-f6f4eb090714df50b77b164bbd5bb65a8ce59cbc.tar.gz
CMake-f6f4eb090714df50b77b164bbd5bb65a8ce59cbc.tar.bz2
clang-tidy: Add driver mode argument
`clang-tidy` does not infer driver mode if it is not provided with a JSON compilation database. This is exactly the way cmake launches it. Hence clang-tidy will only use the default driver mode. Add an explicit driver mode argument to avoid this.
Diffstat (limited to 'Modules/Compiler/MSVC-CXX.cmake')
-rw-r--r--Modules/Compiler/MSVC-CXX.cmake2
1 files changed, 2 insertions, 0 deletions
diff --git a/Modules/Compiler/MSVC-CXX.cmake b/Modules/Compiler/MSVC-CXX.cmake
index 915295d..1dfc760 100644
--- a/Modules/Compiler/MSVC-CXX.cmake
+++ b/Modules/Compiler/MSVC-CXX.cmake
@@ -3,6 +3,8 @@
include(Compiler/CMakeCommonCompilerMacros)
+set(CMAKE_CXX_CLANG_TIDY_DRIVER_MODE "cl")
+
if ((CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL 19.0.24215.1 AND
CMAKE_CXX_COMPILER_VERSION VERSION_LESS 19.10) OR
CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL 19.10.25017)