2009-09-28 15:46:51 +00: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.
|
|
|
|
#=============================================================================
|
|
|
|
# (To distributed this file outside of CMake, substitute the full
|
|
|
|
# License text for the above reference.)
|
|
|
|
|
2008-11-05 23:51:46 +00:00
|
|
|
# support for AT&T syntax assemblers, e.g. GNU as
|
|
|
|
|
2007-06-28 13:14:27 +00:00
|
|
|
SET(ASM_DIALECT "-ATT")
|
2009-09-12 06:15:30 +00:00
|
|
|
# *.S files are supposed to be preprocessed, so they should not be passed to
|
|
|
|
# assembler but should be processed by gcc
|
|
|
|
SET(CMAKE_ASM${ASM_DIALECT}_SOURCE_FILE_EXTENSIONS s;asm)
|
2007-06-28 13:14:27 +00:00
|
|
|
INCLUDE(CMakeASMInformation)
|
|
|
|
SET(ASM_DIALECT)
|