https://github.com/Kitware/CMake
Revision 810ab9b24d4366353cfb19bdf3607e093276e443 authored by Brad King on 19 August 2022, 11:17:26 UTC, committed by Kitware Robot on 19 August 2022, 11:17:33 UTC
05a1464689 ci: use CMake 3.24.1
c3793b4157 CMake 3.24.1

Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: buildbot <buildbot@kitware.com>
Merge-request: !7590
2 parent s c1046c1 + 05a1464
Raw File
Tip revision: 810ab9b24d4366353cfb19bdf3607e093276e443 authored by Brad King on 19 August 2022, 11:17:26 UTC
Merge topic 'ci-cmake-update' into release-3.24
Tip revision: 810ab9b
CMakeDetermineASM_NASMCompiler.cmake
# Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
# file Copyright.txt or https://cmake.org/licensing for details.


# Find the nasm assembler. yasm (http://www.tortall.net/projects/yasm/) is nasm compatible

set(CMAKE_ASM_NASM_COMPILER_LIST nasm yasm)

if(NOT CMAKE_ASM_NASM_COMPILER)
  set(_CMAKE_ENV_VARX86 "ProgramFiles(x86)")
  set(_CMAKE_ASM_NASM_COMPILER_PATHS
    "[HKEY_CURRENT_USER\\SOFTWARE\\nasm]"
    "$ENV{ProgramFiles}/NASM"
    "$ENV{${ENV_VARX86}}/NASM"
    "$ENV{LOCALAPPDATA}/NASM"
    )
  find_program(CMAKE_ASM_NASM_COMPILER
    NAMES ${CMAKE_ASM_NASM_COMPILER_LIST}
    PATHS ${_CMAKE_ASM_NASM_COMPILER_PATHS}
    NO_DEFAULT_PATH
    DOC "NASM compiler"
  )
  unset(_CMAKE_ENV_VARX86)
  unset(_CMAKE_ASM_NASM_COMPILER_PATHS)
endif()

# Load the generic DetermineASM compiler file with the DIALECT set properly:
set(ASM_DIALECT "_NASM")
include(CMakeDetermineASMCompiler)
set(ASM_DIALECT)
back to top