2023-11-01 06:11:15 +08:00
|
|
|
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
# file Copyright.txt or https://cmake.org/licensing for details.
|
|
|
|
|
|
|
|
|
|
|
|
# This module is shared by multiple languages; use include blocker.
|
2023-11-01 08:44:24 +08:00
|
|
|
if(__COMPILER_NVHPC)
|
2023-11-01 06:11:15 +08:00
|
|
|
return()
|
|
|
|
endif()
|
2023-11-01 08:44:24 +08:00
|
|
|
set(__COMPILER_NVHPC 1)
|
2023-11-01 06:11:15 +08:00
|
|
|
|
2023-11-01 08:44:24 +08:00
|
|
|
include(Compiler/PGI)
|
2023-11-01 06:11:15 +08:00
|
|
|
|
2023-11-01 08:44:24 +08:00
|
|
|
macro(__compiler_nvhpc lang)
|
|
|
|
# Logic specific to NVHPC.
|
|
|
|
set(CMAKE_INCLUDE_SYSTEM_FLAG_${lang} "-isystem ")
|
|
|
|
set(CMAKE_${lang}_COMPILE_OPTIONS_WARNING_AS_ERROR "-Werror")
|
2023-11-01 06:20:22 +08:00
|
|
|
endmacro()
|