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)
14 set(CMAKE_ASM${ASM_DIALECT}_COMPILER_INIT ml)
17 include(CMakeDetermineASMCompiler)