summaryrefslogtreecommitdiffstats
path: root/Modules/Compiler/NVHPC-C.cmake
diff options
context:
space:
mode:
authorRobert Maynard <rmaynard@nvidia.com>2021-08-05 20:19:23 (GMT)
committerRobert Maynard <rmaynard@nvidia.com>2021-08-05 20:19:23 (GMT)
commit9ac426e46075871a283e6b2afdeb3792a70e5744 (patch)
tree408c65add223e020dfd33f211e564ccb9e65f90f /Modules/Compiler/NVHPC-C.cmake
parentf5dbc27c27a09a3d62d619e9859b3b8c3cb7699a (diff)
downloadCMake-9ac426e46075871a283e6b2afdeb3792a70e5744.zip
CMake-9ac426e46075871a283e6b2afdeb3792a70e5744.tar.gz
CMake-9ac426e46075871a283e6b2afdeb3792a70e5744.tar.bz2
NVHPC-C: Add support for C17
Diffstat (limited to 'Modules/Compiler/NVHPC-C.cmake')
-rw-r--r--Modules/Compiler/NVHPC-C.cmake5
1 files changed, 5 insertions, 0 deletions
diff --git a/Modules/Compiler/NVHPC-C.cmake b/Modules/Compiler/NVHPC-C.cmake
index 72c2656..e37aad5 100644
--- a/Modules/Compiler/NVHPC-C.cmake
+++ b/Modules/Compiler/NVHPC-C.cmake
@@ -4,4 +4,9 @@ include(Compiler/NVHPC)
# Needed so that we support `LANGUAGE` property correctly
set(CMAKE_C_COMPILE_OPTIONS_EXPLICIT_LANGUAGE -x c)
+if(CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 20.11)
+ set(CMAKE_C17_STANDARD_COMPILE_OPTION -std=c17)
+ set(CMAKE_C17_EXTENSION_COMPILE_OPTION -std=gnu17)
+endif()
+
__compiler_nvhpc(C)