Imported Upstream version 2.8.10.2
[platform/upstream/cmake.git] / Modules / CMakeTestASMCompiler.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 # This file is used by EnableLanguage in cmGlobalGenerator to
16 # determine that the selected ASM compiler works.
17 # For assembler this can only check whether the compiler has been found,
18 # because otherwise there would have to be a separate assembler source file
19 # for each assembler on every architecture.
20
21
22 set(_ASM_COMPILER_WORKS 0)
23
24 if(CMAKE_ASM${ASM_DIALECT}_COMPILER)
25   set(_ASM_COMPILER_WORKS 1)
26 endif()
27
28 # when using generic "ASM" support, we must have detected the compiler ID, fail otherwise:
29 if("ASM${ASM_DIALECT}" STREQUAL "ASM")
30   if(NOT CMAKE_ASM${ASM_DIALECT}_COMPILER_ID)
31     set(_ASM_COMPILER_WORKS 0)
32   endif()
33 endif()
34
35 set(CMAKE_ASM${ASM_DIALECT}_COMPILER_WORKS ${_ASM_COMPILER_WORKS} CACHE INTERNAL "")