2016-09-27 15:01:08 -04:00
|
|
|
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
# file Copyright.txt or https://cmake.org/licensing for details.
|
2009-09-28 11:46:51 -04:00
|
|
|
|
|
|
|
|
2008-11-05 17:27:41 -05:00
|
|
|
# Find the MS assembler (masm or masm64)
|
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
set(ASM_DIALECT "_MASM")
|
2008-11-05 17:27:41 -05:00
|
|
|
|
|
|
|
# if we are using the 64bit cl compiler, assume we also want the 64bit assembler
|
2014-08-13 14:44:52 -04:00
|
|
|
if(";${CMAKE_VS_PLATFORM_NAME};${MSVC_C_ARCHITECTURE_ID};${MSVC_CXX_ARCHITECTURE_ID};"
|
|
|
|
MATCHES ";(Win64|Itanium|x64|IA64);")
|
2012-08-13 13:47:32 -04:00
|
|
|
set(CMAKE_ASM${ASM_DIALECT}_COMPILER_INIT ml64)
|
2012-08-13 13:50:14 -04:00
|
|
|
else()
|
2012-08-13 13:47:32 -04:00
|
|
|
set(CMAKE_ASM${ASM_DIALECT}_COMPILER_INIT ml)
|
2012-08-13 13:50:14 -04:00
|
|
|
endif()
|
2008-11-05 17:27:41 -05:00
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
include(CMakeDetermineASMCompiler)
|
|
|
|
set(ASM_DIALECT)
|