Linux-NVHPC.cmake 398 B

123456789101112131415
  1. # Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. # file Copyright.txt or https://cmake.org/licensing for details.
  3. # This module is shared by multiple languages; use include blocker.
  4. if(__LINUX_COMPILER_NVIDIA)
  5. return()
  6. endif()
  7. set(__LINUX_COMPILER_NVIDIA 1)
  8. include(Platform/Linux-PGI)
  9. macro(__linux_compiler_nvhpc lang)
  10. __linux_compiler_pgi(${lang})
  11. endmacro()