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