summaryrefslogtreecommitdiffstats
path: root/Source/CursesDialog
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2021-04-19 15:06:04 (GMT)
committerBrad King <brad.king@kitware.com>2021-04-20 15:44:25 (GMT)
commit408e6d6185427dc57470f5685e9774e579bd6283 (patch)
tree5963e511c7658897b5f72aec588abe4df495f169 /Source/CursesDialog
parent995be1097c35fd3187d147494156bbfb9da7037f (diff)
downloadCMake-408e6d6185427dc57470f5685e9774e579bd6283.zip
CMake-408e6d6185427dc57470f5685e9774e579bd6283.tar.gz
CMake-408e6d6185427dc57470f5685e9774e579bd6283.tar.bz2
Utilities: Suppress warnings in third-party code with NVHPC
Diffstat (limited to 'Source/CursesDialog')
-rw-r--r--Source/CursesDialog/form/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CursesDialog/form/CMakeLists.txt b/Source/CursesDialog/form/CMakeLists.txt
index 8f26b9a..9202bc1 100644
--- a/Source/CursesDialog/form/CMakeLists.txt
+++ b/Source/CursesDialog/form/CMakeLists.txt
@@ -5,7 +5,7 @@ project(CMAKE_FORM)
# Disable warnings to avoid changing 3rd party code.
if(CMAKE_C_COMPILER_ID MATCHES
- "^(GNU|Clang|AppleClang|XLClang|XL|VisualAge|SunPro|HP|Intel|IntelLLVM)$")
+ "^(GNU|Clang|AppleClang|XLClang|XL|VisualAge|SunPro|HP|Intel|IntelLLVM|NVHPC)$")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -w")
elseif(CMAKE_C_COMPILER_ID STREQUAL "PathScale")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -woffall")