CMakeDetermineASM_MASMCompiler.cmake 355 B

12345678910111213
  1. # Find the MS assembler (masm or masm64)
  2. SET(ASM_DIALECT "_MASM")
  3. # if we are using the 64bit cl compiler, assume we also want the 64bit assembler
  4. IF(CMAKE_CL_64)
  5. SET(CMAKE_ASM${ASM_DIALECT}_COMPILER_INIT ml64)
  6. ELSE(CMAKE_CL_64)
  7. SET(CMAKE_ASM${ASM_DIALECT}_COMPILER_INIT ml)
  8. ENDIF(CMAKE_CL_64)
  9. INCLUDE(CMakeDetermineASMCompiler)
  10. SET(ASM_DIALECT)