WindowsStore-C.cmake 354 B

12345678910
  1. # Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. # file Copyright.txt or https://cmake.org/licensing for details.
  3. if(CMAKE_C_SIMULATE_ID STREQUAL "MSVC")
  4. # MSVC is the default linker
  5. include(Platform/Linker/WindowsStore-MSVC-C)
  6. else()
  7. # GNU is the default linker
  8. include(Platform/Linker/WindowsStore-GNU-C)
  9. endif()