2016-09-27 22:01:08 +03: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 19:46:51 +04:00
|
|
|
|
|
|
|
|
2008-11-06 01:27:41 +03:00
|
|
|
# Find the MS assembler (masm or masm64)
|
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
set(ASM_DIALECT "_MASM")
|
2008-11-06 01:27:41 +03:00
|
|
|
|
|
|
|
# if we are using the 64bit cl compiler, assume we also want the 64bit assembler
|
2014-08-13 22: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 21:47:32 +04:00
|
|
|
set(CMAKE_ASM${ASM_DIALECT}_COMPILER_INIT ml64)
|
2012-08-13 21:50:14 +04:00
|
|
|
else()
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_ASM${ASM_DIALECT}_COMPILER_INIT ml)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2008-11-06 01:27:41 +03:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
include(CMakeDetermineASMCompiler)
|
|
|
|
set(ASM_DIALECT)
|