Imported Upstream version 2.8.10.2
[platform/upstream/cmake.git] / Modules / CMakeASM-ATTInformation.cmake
1
2 #=============================================================================
3 # Copyright 2007-2009 Kitware, Inc.
4 #
5 # Distributed under the OSI-approved BSD License (the "License");
6 # see accompanying file Copyright.txt for details.
7 #
8 # This software is distributed WITHOUT ANY WARRANTY; without even the
9 # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10 # See the License for more information.
11 #=============================================================================
12 # (To distribute this file outside of CMake, substitute the full
13 #  License text for the above reference.)
14
15 # support for AT&T syntax assemblers, e.g. GNU as
16
17 set(ASM_DIALECT "-ATT")
18 # *.S files are supposed to be preprocessed, so they should not be passed to
19 # assembler but should be processed by gcc
20 set(CMAKE_ASM${ASM_DIALECT}_SOURCE_FILE_EXTENSIONS s;asm)
21
22 set(CMAKE_ASM${ASM_DIALECT}_COMPILE_OBJECT "<CMAKE_ASM${ASM_DIALECT}_COMPILER> <FLAGS> -o <OBJECT> <SOURCE>")
23
24 include(CMakeASMInformation)
25 set(ASM_DIALECT)