MSVC: Use dash-style flag for LINK_WARNING_AS_ERROR

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).
This commit is contained in:
Brad King 2025-01-16 09:39:39 -05:00
parent 25782aa61f
commit 216c469214

View File

@ -8,5 +8,5 @@ include_guard()
macro(__linker_msvc lang)
# Linker warning as error
set(CMAKE_${lang}_LINK_OPTIONS_WARNING_AS_ERROR "LINKER:/WX")
set(CMAKE_${lang}_LINK_OPTIONS_WARNING_AS_ERROR "LINKER:-WX")
endmacro()