https://github.com/Kitware/CMake
Raw File
Tip revision: 9bbfbd54ba04e07b0bf2eb8bb1056bca53d639c5 authored by Brad King on 13 December 2018, 11:44:30 UTC
CMake 3.13.2
Tip revision: 9bbfbd5
CMakeASM_MASMInformation.cmake
# Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
# file Copyright.txt or https://cmake.org/licensing for details.


# support for the MS assembler, masm and masm64

set(ASM_DIALECT "_MASM")

set(CMAKE_ASM${ASM_DIALECT}_SOURCE_FILE_EXTENSIONS asm)

set(CMAKE_ASM${ASM_DIALECT}_COMPILE_OBJECT "<CMAKE_ASM${ASM_DIALECT}_COMPILER> <DEFINES> <INCLUDES> <FLAGS> /c  /Fo <OBJECT> <SOURCE>")

include(CMakeASMInformation)
set(ASM_DIALECT)
back to top