2016-09-27 15:01:08 -04: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 11:46:51 -04:00
|
|
|
|
|
|
|
|
2008-11-05 18:51:46 -05:00
|
|
|
# support for AT&T syntax assemblers, e.g. GNU as
|
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
set(ASM_DIALECT "-ATT")
|
2009-09-12 02:15:30 -04:00
|
|
|
# *.S files are supposed to be preprocessed, so they should not be passed to
|
|
|
|
# assembler but should be processed by gcc
|
2012-08-13 13:47:32 -04:00
|
|
|
set(CMAKE_ASM${ASM_DIALECT}_SOURCE_FILE_EXTENSIONS s;asm)
|
2011-02-12 16:15:59 +01:00
|
|
|
|
2016-03-25 23:18:07 +01:00
|
|
|
set(CMAKE_ASM${ASM_DIALECT}_COMPILE_OBJECT "<CMAKE_ASM${ASM_DIALECT}_COMPILER> <INCLUDES> <FLAGS> -o <OBJECT> <SOURCE>")
|
2011-02-12 16:15:59 +01:00
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
include(CMakeASMInformation)
|
|
|
|
set(ASM_DIALECT)
|