CMake/Modules/Compiler/FujitsuClang.cmake
Chuck Atkins 27579e9cf1 FujitsuClang: Add support for the Fujitsu compiler in Clang mode
This should be front end compatible with vanilla clang but giving it a
unique identifier allows a project to pass additional options unique to
Fujitsu and outside the scope of a CMake builtin.
2021-03-31 09:14:45 -04:00

12 lines
315 B
CMake

# 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.
if(__COMPILER_FUJITSUCLANG)
return()
endif()
set(__COMPILER_FUJITSUCLANG 1)
include(Compiler/Clang)