Merge topic 'cxx-checks-tolerate-unused-arguments'
[kiteware-cmake.git] / Modules / CMakeDetermineASM_MASMCompiler.cmake
blob80188fb25fb2f89e7d7a0fb25eecf3db5daa0c43
1 # Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
2 # file Copyright.txt or https://cmake.org/licensing for details.
5 # Find the MS assembler (masm or masm64)
7 set(ASM_DIALECT "_MASM")
9 # if we are using the 64bit cl compiler, assume we also want the 64bit assembler
10 if(";${CMAKE_VS_PLATFORM_NAME};${MSVC_C_ARCHITECTURE_ID};${MSVC_CXX_ARCHITECTURE_ID};"
11   MATCHES ";(Win64|Itanium|x64|IA64);")
12   set(CMAKE_ASM${ASM_DIALECT}_COMPILER_INIT ml64)
13 else()
14   set(CMAKE_ASM${ASM_DIALECT}_COMPILER_INIT ml)
15 endif()
17 include(CMakeDetermineASMCompiler)
18 set(ASM_DIALECT)