mirror of
https://github.com/Kitware/CMake.git
synced 2025-06-26 22:37:32 +08:00

This placeholder was added to the compilation rules for other languages by commit v3.4.0-rc1~342^2 (Factor an <INCLUDES> placeholder out of <FLAGS> in rule variables, 2015-07-13) but ASM was incorrectly left out. Signed-off-by: Gregor Jasny <gjasny@googlemail.com>
8 lines
252 B
CMake
8 lines
252 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> <INCLUDES> <FLAGS> -o <OBJECT> <SOURCE>")
|
|
set(CMAKE_ASM_SOURCE_FILE_EXTENSIONS s;asm;msa)
|