summaryrefslogtreecommitdiffstats
path: root/Tests
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2022-07-05 14:32:46 (GMT)
committerKitware Robot <kwrobot@kitware.com>2022-07-05 14:32:54 (GMT)
commitc70ed631f7fc26074fb944e01cafe9ef28903d56 (patch)
treedf5360456092e52376065328d959c4cf12b37bbe /Tests
parent6fee995256fc4b8aae5484eb450499818d65470c (diff)
parent35ec676ace82806a316adb36608e8812f2c27bfd (diff)
downloadCMake-c70ed631f7fc26074fb944e01cafe9ef28903d56.zip
CMake-c70ed631f7fc26074fb944e01cafe9ef28903d56.tar.gz
CMake-c70ed631f7fc26074fb944e01cafe9ef28903d56.tar.bz2
Merge topic 'nvhpc-Werror' into release-3.24
35ec676ace NVHPC: warnings as error flag is "-Werror" Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7415
Diffstat (limited to 'Tests')
-rw-r--r--Tests/RunCMake/CompileWarningAsError/WarningAsErrorOptions.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/RunCMake/CompileWarningAsError/WarningAsErrorOptions.cmake b/Tests/RunCMake/CompileWarningAsError/WarningAsErrorOptions.cmake
index 590c8a4..d8770e1 100644
--- a/Tests/RunCMake/CompileWarningAsError/WarningAsErrorOptions.cmake
+++ b/Tests/RunCMake/CompileWarningAsError/WarningAsErrorOptions.cmake
@@ -1,7 +1,7 @@
# add compile options to warning_options to ensure unused-function throws a warning
# if warning_options is NOT DEFINED, assume compiler doesn't support warning as error
macro(get_warning_options warning_options lang)
- if (CMAKE_${lang}_COMPILER_ID MATCHES "^(GNU|Clang|AppleClang|XLClang|IBMClang|LCC|IntelLLVM)$")
+ if (CMAKE_${lang}_COMPILER_ID MATCHES "^(GNU|Clang|AppleClang|XLClang|IBMClang|LCC|IntelLLVM|NVHPC)$")
set(${warning_options} "-Wall")
elseif (CMAKE_${lang}_COMPILER_ID STREQUAL "MSVC"
OR (CMAKE_${lang}_COMPILER_ID STREQUAL "Intel" AND CMAKE_${lang}_SIMULATE_ID MATCHES "MSVC"))