2009-09-28 11:46:51 -04:00
|
|
|
|
|
|
|
#=============================================================================
|
|
|
|
# Copyright 2007-2009 Kitware, Inc.
|
|
|
|
#
|
|
|
|
# Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
# see accompanying file Copyright.txt for details.
|
|
|
|
#
|
|
|
|
# This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
# See the License for more information.
|
|
|
|
#=============================================================================
|
2010-08-06 17:48:47 -07:00
|
|
|
# (To distribute this file outside of CMake, substitute the full
|
2009-09-28 11:46:51 -04:00
|
|
|
# License text for the above reference.)
|
|
|
|
|
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
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
set(CMAKE_ASM${ASM_DIALECT}_COMPILE_OBJECT "<CMAKE_ASM${ASM_DIALECT}_COMPILER> <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)
|