CMakeSwiftInformation.cmake 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #=============================================================================
  2. # Copyright 2004-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. set(CMAKE_Swift_OUTPUT_EXTENSION .o)
  14. # Load compiler-specific information.
  15. if(CMAKE_Swift_COMPILER_ID)
  16. include(Compiler/${CMAKE_Swift_COMPILER_ID}-Swift OPTIONAL)
  17. endif()
  18. # load the system- and compiler specific files
  19. if(CMAKE_Swift_COMPILER_ID)
  20. # load a hardware specific file, mostly useful for embedded compilers
  21. if(CMAKE_SYSTEM_PROCESSOR)
  22. include(Platform/${CMAKE_SYSTEM_NAME}-${CMAKE_Swift_COMPILER_ID}-Swift-${CMAKE_SYSTEM_PROCESSOR} OPTIONAL)
  23. endif()
  24. include(Platform/${CMAKE_SYSTEM_NAME}-${CMAKE_Swift_COMPILER_ID}-Swift OPTIONAL)
  25. endif()
  26. # for most systems a module is the same as a shared library
  27. # so unless the variable CMAKE_MODULE_EXISTS is set just
  28. # copy the values from the LIBRARY variables
  29. if(NOT CMAKE_MODULE_EXISTS)
  30. set(CMAKE_SHARED_MODULE_Swift_FLAGS ${CMAKE_SHARED_LIBRARY_Swift_FLAGS})
  31. set(CMAKE_SHARED_MODULE_CREATE_Swift_FLAGS ${CMAKE_SHARED_LIBRARY_CREATE_Swift_FLAGS})
  32. endif()
  33. include(CMakeCommonLanguageInclude)
  34. set(CMAKE_Swift_INFORMATION_LOADED 1)