CMakeDetermineASM_MASMCompiler.cmake 1.0 KB

12345678910111213141516171819202122232425262728
  1. #=============================================================================
  2. # Copyright 2008-2009 Kitware, Inc.
  3. #
  4. # Distributed under the OSI-approved BSD License (the "License");
  5. # see accompanying file Copyright.txt for details.
  6. #
  7. # This software is distributed WITHOUT ANY WARRANTY; without even the
  8. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  9. # See the License for more information.
  10. #=============================================================================
  11. # (To distribute this file outside of CMake, substitute the full
  12. # License text for the above reference.)
  13. # Find the MS assembler (masm or masm64)
  14. set(ASM_DIALECT "_MASM")
  15. # if we are using the 64bit cl compiler, assume we also want the 64bit assembler
  16. if(";${CMAKE_VS_PLATFORM_NAME};${MSVC_C_ARCHITECTURE_ID};${MSVC_CXX_ARCHITECTURE_ID};"
  17. MATCHES ";(Win64|Itanium|x64|IA64);")
  18. set(CMAKE_ASM${ASM_DIALECT}_COMPILER_INIT ml64)
  19. else()
  20. set(CMAKE_ASM${ASM_DIALECT}_COMPILER_INIT ml)
  21. endif()
  22. include(CMakeDetermineASMCompiler)
  23. set(ASM_DIALECT)