https://github.com/Kitware/CMake
Revision 7adfd890fb8c44738d64f7ade5eec62f6bafb3df authored by Brad King on 15 July 2021, 14:44:16 UTC, committed by Brad King on 15 July 2021, 17:12:07 UTC
While the flag tables for C and C++ were generated from MSBuild `.xml`
files, the CSharp flag tables were written by hand.  Copy the `v142`
flag table to use for the `v143` toolset.
1 parent 63c1262
Raw File
Tip revision: 7adfd890fb8c44738d64f7ade5eec62f6bafb3df authored by Brad King on 15 July 2021, 14:44:16 UTC
VS: Add CSharp VS 2022 compiler version and flag table v143
Tip revision: 7adfd89
CMakeDetermineASM-ATTCompiler.cmake
# Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
# file Copyright.txt or https://cmake.org/licensing for details.


# determine the compiler to use for ASM using AT&T syntax, e.g. GNU as

set(ASM_DIALECT "-ATT")
set(CMAKE_ASM${ASM_DIALECT}_COMPILER_LIST ${_CMAKE_TOOLCHAIN_PREFIX}gas ${_CMAKE_TOOLCHAIN_PREFIX}as)
include(CMakeDetermineASMCompiler)
set(ASM_DIALECT)
back to top