2016-09-27 22:01:08 +03: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 20:04:34 +04:00
|
|
|
|
|
|
|
|
2010-10-21 22:51:46 +04:00
|
|
|
# Find the nasm assembler. yasm (http://www.tortall.net/projects/yasm/) is nasm compatible
|
2010-09-25 22:57:03 +04:00
|
|
|
|
2013-06-11 23:06:35 +04:00
|
|
|
set(CMAKE_ASM_NASM_COMPILER_LIST nasm yasm)
|
2010-09-25 22:57:03 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
if(NOT CMAKE_ASM_NASM_COMPILER)
|
|
|
|
find_program(CMAKE_ASM_NASM_COMPILER nasm
|
2010-09-25 22:57:03 +04:00
|
|
|
"$ENV{ProgramFiles}/NASM")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2010-09-25 22:57:03 +04:00
|
|
|
|
|
|
|
# Load the generic DetermineASM compiler file with the DIALECT set properly:
|
2012-08-13 21:47:32 +04:00
|
|
|
set(ASM_DIALECT "_NASM")
|
|
|
|
include(CMakeDetermineASMCompiler)
|
|
|
|
set(ASM_DIALECT)
|