035a658f4f
Create an `ARMCC` compiler id corresponding to compilers identified and versioned by the `__ARMCC_VERSION` predefined macro. See documentation for the compilers at http://infocenter.arm.com/help/topic/com.arm.doc.set.swdev/index.html
8 lines
241 B
CMake
8 lines
241 B
CMake
include(Compiler/ARMCC)
|
|
|
|
set(CMAKE_ASM_OUTPUT_EXTENSION ".o")
|
|
set(CMAKE_ASM_OUTPUT_EXTENSION_REPLACE 1)
|
|
|
|
set(CMAKE_ASM_COMPILE_OBJECT "<CMAKE_ASM_COMPILER> <FLAGS> -o <OBJECT> <SOURCE>")
|
|
set(CMAKE_ASM_SOURCE_FILE_EXTENSIONS s;asm;msa)
|