mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 21:31:08 -06:00
13 lines
476 B
CMake
13 lines
476 B
CMake
include(Compiler/PGI-C)
|
|
include(Compiler/NVHPC)
|
|
|
|
# Needed so that we support `LANGUAGE` property correctly
|
|
set(CMAKE_C_COMPILE_OPTIONS_EXPLICIT_LANGUAGE -x c)
|
|
|
|
# Required since as of NVHPC 21.03 the `-MD` flag implicitly
|
|
# implies `-E` and therefore compilation and dependency generation
|
|
# can't occur in the same invocation
|
|
set(CMAKE_C_DEPENDS_EXTRA_COMMANDS "<CMAKE_C_COMPILER> <DEFINES> <INCLUDES> <FLAGS> -x c -M <SOURCE> -MT <OBJECT> -MD<DEP_FILE>")
|
|
|
|
__compiler_nvhpc(C)
|