cmake/Modules/CMakeDetermineASM_NASMCompiler.cmake

28 lines
1011 B
CMake
Raw Normal View History

2011-01-16 11:35:12 +01:00
#=============================================================================
# Copyright 2010 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 distribute this file outside of CMake, substitute the full
# License text for the above reference.)
# Find the nasm assembler. yasm (http://www.tortall.net/projects/yasm/) is nasm compatible
2013-03-16 19:13:01 +02:00
set(CMAKE_ASM_NASM_COMPILER_INIT nasm yasm)
2011-01-16 11:35:12 +01:00
2013-03-16 19:13:01 +02:00
if(NOT CMAKE_ASM_NASM_COMPILER)
find_program(CMAKE_ASM_NASM_COMPILER nasm
2011-01-16 11:35:12 +01:00
"$ENV{ProgramFiles}/NASM")
2013-03-16 19:13:01 +02:00
endif()
2011-01-16 11:35:12 +01:00
# Load the generic DetermineASM compiler file with the DIALECT set properly:
2013-03-16 19:13:01 +02:00
set(ASM_DIALECT "_NASM")
include(CMakeDetermineASMCompiler)
set(ASM_DIALECT)