CMakeTestASMCompiler.cmake 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. #=============================================================================
  2. # Copyright 2007-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. # This file is used by EnableLanguage in cmGlobalGenerator to
  14. # determine that the selected ASM compiler works.
  15. # For assembler this can only check whether the compiler has been found,
  16. # because otherwise there would have to be a separate assembler source file
  17. # for each assembler on every architecture.
  18. set(_ASM_COMPILER_WORKS 0)
  19. if(CMAKE_ASM${ASM_DIALECT}_COMPILER)
  20. set(_ASM_COMPILER_WORKS 1)
  21. endif()
  22. # when using generic "ASM" support, we must have detected the compiler ID, fail otherwise:
  23. if("ASM${ASM_DIALECT}" STREQUAL "ASM")
  24. if(NOT CMAKE_ASM${ASM_DIALECT}_COMPILER_ID)
  25. set(_ASM_COMPILER_WORKS 0)
  26. endif()
  27. endif()
  28. set(CMAKE_ASM${ASM_DIALECT}_COMPILER_WORKS ${_ASM_COMPILER_WORKS} CACHE INTERNAL "")