VS: Detect MSVC compiler id on ARM toolchain

This enables detection with the VS2012 CTP for windows Blue (8.1).
To build native ARM you need to have the WOA SDK (Windows on ARM).
This commit is contained in:
Alexander Mohr 2013-05-08 09:10:52 -04:00 committed by Brad King
parent 619fa2cce8
commit e4c046521f
1 changed files with 2 additions and 0 deletions

View File

@ -131,6 +131,8 @@ Id flags: ${testflags}
elseif("${id_arch}" STREQUAL "Itanium")
set(id_machine_10 MachineIA64)
set(id_arch ia64)
elseif("${id_arch}" STREQUAL "ARM")
set(id_machine_10 MachineARM)
else()
set(id_machine_6 x86)
set(id_machine_10 MachineX86)