mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-20 21:50:53 -06:00
MS tooling accepts either `/` or `-`. We prefer the latter because it
interacts better with MSYS shells. Update the table entry from commit
7907c83175 (Link step: Add LINK_WARNING_AS_ERROR target property,
2024-11-06).
13 lines
357 B
CMake
13 lines
357 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 linkers; use include blocker.
|
|
include_guard()
|
|
|
|
|
|
macro(__linker_msvc lang)
|
|
# Linker warning as error
|
|
set(CMAKE_${lang}_LINK_OPTIONS_WARNING_AS_ERROR "LINKER:-WX")
|
|
endmacro()
|