2016-10-30 18:24:19 +01:00
|
|
|
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
# file Copyright.txt or https://cmake.org/licensing for details.
|
2011-01-16 11:35:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
# Find the nasm assembler. yasm (http://www.tortall.net/projects/yasm/) is nasm compatible
|
|
|
|
|
2013-07-04 23:25:18 +03:00
|
|
|
set(CMAKE_ASM_NASM_COMPILER_LIST 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)
|