mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-01 03:11:08 -06:00
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.
12 lines
315 B
CMake
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)
|