2016-09-27 19:01:08 +00:00
|
|
|
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
# file Copyright.txt or https://cmake.org/licensing for details.
|
2010-09-27 16:04:34 +00:00
|
|
|
|
|
|
|
|
2010-10-21 18:51:46 +00:00
|
|
|
# Find the nasm assembler. yasm (http://www.tortall.net/projects/yasm/) is nasm compatible
|
2010-09-25 18:57:03 +00:00
|
|
|
|
2013-06-11 19:06:35 +00:00
|
|
|
set(CMAKE_ASM_NASM_COMPILER_LIST nasm yasm)
|
2010-09-25 18:57:03 +00:00
|
|
|
|
2012-08-13 17:47:32 +00:00
|
|
|
if(NOT CMAKE_ASM_NASM_COMPILER)
|
|
|
|
find_program(CMAKE_ASM_NASM_COMPILER nasm
|
2010-09-25 18:57:03 +00:00
|
|
|
"$ENV{ProgramFiles}/NASM")
|
2012-08-13 17:50:14 +00:00
|
|
|
endif()
|
2010-09-25 18:57:03 +00:00
|
|
|
|
|
|
|
# Load the generic DetermineASM compiler file with the DIALECT set properly:
|
2012-08-13 17:47:32 +00:00
|
|
|
set(ASM_DIALECT "_NASM")
|
|
|
|
include(CMakeDetermineASMCompiler)
|
|
|
|
set(ASM_DIALECT)
|