Update toolchain-msvc.cmake (#1593)

Adding armasm64 as the assembler. This on its own isn't too useful right now.
This commit is contained in:
woachk 2019-06-02 00:38:56 +02:00 committed by Hermès BÉLUSCA - MAÏTO
parent 9fcf20a412
commit fcab77871e
1 changed files with 2 additions and 0 deletions

View File

@ -45,6 +45,8 @@ if(ARCH STREQUAL "amd64")
set(CMAKE_ASM_COMPILER ml64)
elseif(ARCH STREQUAL "arm")
set(CMAKE_ASM_COMPILER armasm)
elseif(ARCH STREQUAL "arm64")
set(CMAKE_ASM_COMPILER armasm64)
else()
set(CMAKE_ASM_COMPILER ml)
endif()