Merge branch 'release-4.0'
[kiteware-cmake.git] / Modules / CMakeDetermineASM_MARMASMCompiler.cmake
blob26714ddabac3acea0fcdd305c7b2245a84be2643
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 ARM assembler (marmasm or marmasm64)
7 set(ASM_DIALECT "_MARMASM")
9 # if we are using the 64bit cl compiler, assume we also want the 64bit assembler
10 if(";${CMAKE_VS_PLATFORM_NAME};${CMAKE_C_COMPILER_ARCHITECTURE_ID};${CMAKE_CXX_COMPILER_ARCHITECTURE_ID};"
11     MATCHES ";(ARM64);")
12   set(CMAKE_ASM${ASM_DIALECT}_COMPILER_INIT armasm64)
13 else()
14   set(CMAKE_ASM${ASM_DIALECT}_COMPILER_INIT armasm)
15 endif()
17 include(CMakeDetermineASMCompiler)
18 set(ASM_DIALECT)