Skip to content
Snippets Groups Projects
Select Git revision
  • 7f9175033d94752b79d4a9a1df825b749ee64dc1
  • next default protected
  • next-test
  • classic-netcode-fixes
  • fix-dedi-pthread
  • fix-enemy-target
  • master protected
  • better-distance-math
  • movie
  • softcode-info
  • acs
  • clipmidtex
  • custom-map-names
  • nogravity-trampolines
  • 2214-pre4
  • 2214-pre3
  • just-in-case
  • fix-opengl-parameter-crash
  • 2214-pre2
  • 2214-pre1
  • delfile2
  • SRB2_release_2.2.15
  • SRB2_release_2.2.13
  • SRB2_release_2.2.12
  • SRB2_release_2.2.11
  • SRB2_release_2.2.10
  • SRB2_release_2.2.9
  • SRB2_release_2.2.8
  • SRB2_release_2.2.7
  • SRB2_release_2.2.6
  • SRB2_release_2.2.5
  • SRB2_release_2.2.4
  • SRB2_release_2.2.3
  • SRB2_release_2.2.2
  • SRB2_release_2.2.1
  • SRB2_release_2.2.0
  • SRB2_release_2.1.25
  • SRB2_release_2.1.24
  • SRB2_release_2.1.23
  • SRB2_release_2.1.22
  • SRB2_release_2.1.21
41 results

am_map.c

Blame
  • CMakeDetermineASM_YASMCompiler.cmake 1011 B
    
    #=============================================================================
    # 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
    
    set(CMAKE_ASM_YASM_COMPILER_LIST nasm yasm)
    
    if(NOT CMAKE_ASM_YASM_COMPILER)
      find_program(CMAKE_ASM_YASM_COMPILER yasm
        "$ENV{ProgramFiles}/YASM")
    endif()
    
    # Load the generic DetermineASM compiler file with the DIALECT set properly:
    set(ASM_DIALECT "_YASM")
    include(CMakeDetermineASMCompiler)
    set(ASM_DIALECT)