mirror of
https://github.com/Kitware/CMake.git
synced 2025-10-17 07:11:52 +08:00

Add `COMPILE_WARNING_AS_ERROR` target property and supporting `CMAKE_COMPILE_WARNING_AS_ERROR` variable. `COMPILE_WARNING_AS_ERROR` is initialized by `CMAKE_COMPILE_WARNING_AS_ERROR`. It is a boolean variable. If it is true, it expands to a different flag depending on the compiler such that any warnings at compile will be treated as errors. Supports compiler ids that I could find a relevant flag for.
15 lines
434 B
CMake
15 lines
434 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_SUNPRO)
|
|
return()
|
|
endif()
|
|
set(__COMPILER_SUNPRO 1)
|
|
|
|
include(Compiler/CMakeCommonCompilerMacros)
|
|
|
|
macro(__compiler_sunpro lang)
|
|
set(CMAKE_${lang}_COMPILE_OPTIONS_WARNING_AS_ERROR "-errwarn=%all")
|
|
endmacro()
|