1# Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
2# file Copyright.txt or https://cmake.org/licensing for details.
3
4
5# Find the MS assembler (masm or masm64)
6
7set(ASM_DIALECT "_MASM")
8
9# if we are using the 64bit cl compiler, assume we also want the 64bit assembler
10if(";${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)
13else()
14  set(CMAKE_ASM${ASM_DIALECT}_COMPILER_INIT ml)
15endif()
16
17include(CMakeDetermineASMCompiler)
18set(ASM_DIALECT)
19