summaryrefslogtreecommitdiffstats
path: root/Modules/Platform/Linker/Windows-ASM.cmake
blob: 472b7a2dd8489efe0e9b8f40104c01eeee712138 (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/Windows-MSVC-ASM)
else()
    # GNU is the default linker
  include(Platform/Linker/Windows-GNU-ASM)
endif()