Imported Upstream version 2.8.10.2
[platform/upstream/cmake.git] / Modules / CMakeDetermineASM_NASMCompiler.cmake
1
2 #=============================================================================
3 # Copyright 2010 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 # Find the nasm assembler. yasm (http://www.tortall.net/projects/yasm/) is nasm compatible
16
17 set(CMAKE_ASM_NASM_COMPILER_INIT nasm yasm)
18
19 if(NOT CMAKE_ASM_NASM_COMPILER)
20   find_program(CMAKE_ASM_NASM_COMPILER nasm
21     "$ENV{ProgramFiles}/NASM")
22 endif()
23
24 # Load the generic DetermineASM compiler file with the DIALECT set properly:
25 set(ASM_DIALECT "_NASM")
26 include(CMakeDetermineASMCompiler)
27 set(ASM_DIALECT)