blob: 7e317f37f576bab068193c373ef4f0bf4c115dca (
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_ASM_SIMULATE_ID STREQUAL "MSVC")
# MSVC is the default linker
include(Platform/Linker/WindowsStore-MSVC-ASM)
else()
# GNU is the default linker
include(Platform/Linker/WindowsStore-GNU-ASM)
endif()
|