2016-09-27 22:01:08 +03: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 19:46:51 +04:00
|
|
|
|
|
|
|
|
2008-11-06 02:51:46 +03:00
|
|
|
# support for AT&T syntax assemblers, e.g. GNU as
|
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
set(ASM_DIALECT "-ATT")
|
2009-09-12 10: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 21:47:32 +04:00
|
|
|
set(CMAKE_ASM${ASM_DIALECT}_SOURCE_FILE_EXTENSIONS s;asm)
|
2011-02-12 18:15:59 +03:00
|
|
|
|
2016-03-26 01:18:07 +03:00
|
|
|
set(CMAKE_ASM${ASM_DIALECT}_COMPILE_OBJECT "<CMAKE_ASM${ASM_DIALECT}_COMPILER> <INCLUDES> <FLAGS> -o <OBJECT> <SOURCE>")
|
2011-02-12 18:15:59 +03:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
include(CMakeASMInformation)
|
|
|
|
set(ASM_DIALECT)
|