CMakeDetermineSwiftCompiler.cmake 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. #=============================================================================
  2. # Copyright 2002-2015 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. include(${CMAKE_ROOT}/Modules/CMakeDetermineCompiler.cmake)
  14. if("${CMAKE_GENERATOR}" STREQUAL "Xcode")
  15. if(XCODE_VERSION VERSION_LESS 6.1)
  16. message(FATAL_ERROR "Swift language not supported by Xcode ${XCODE_VERSION}")
  17. endif()
  18. set(CMAKE_Swift_COMPILER_XCODE_TYPE sourcecode.swift)
  19. _cmake_find_compiler_path(Swift)
  20. else()
  21. message(FATAL_ERROR "Swift language not supported by \"${CMAKE_GENERATOR}\" generator")
  22. endif()
  23. # Build a small source file to identify the compiler.
  24. if(NOT CMAKE_Swift_COMPILER_ID_RUN)
  25. set(CMAKE_Swift_COMPILER_ID_RUN 1)
  26. list(APPEND CMAKE_Swift_COMPILER_ID_MATCH_VENDORS Apple)
  27. set(CMAKE_Swift_COMPILER_ID_MATCH_VENDOR_REGEX_Apple "com.apple.xcode.tools.swift.compiler")
  28. set(CMAKE_Swift_COMPILER_ID_TOOL_MATCH_REGEX "\nCompileSwiftSources[^\n]*(\n[ \t]+[^\n]*)*\n[ \t]+([^ \t\r\n]+)[^\r\n]* -c[^\r\n]*CompilerIdSwift/CompilerId/main.swift")
  29. set(CMAKE_Swift_COMPILER_ID_TOOL_MATCH_INDEX 2)
  30. # Try to identify the compiler.
  31. set(CMAKE_Swift_COMPILER_ID)
  32. include(${CMAKE_ROOT}/Modules/CMakeDetermineCompilerId.cmake)
  33. CMAKE_DETERMINE_COMPILER_ID(Swift "" CompilerId/main.swift)
  34. endif()
  35. if (NOT _CMAKE_TOOLCHAIN_LOCATION)
  36. get_filename_component(_CMAKE_TOOLCHAIN_LOCATION "${CMAKE_Swift_COMPILER}" PATH)
  37. endif ()
  38. include(CMakeFindBinUtils)
  39. # configure variables set in this file for fast reload later on
  40. configure_file(${CMAKE_ROOT}/Modules/CMakeSwiftCompiler.cmake.in
  41. ${CMAKE_PLATFORM_INFO_DIR}/CMakeSwiftCompiler.cmake
  42. @ONLY
  43. )