mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-16 04:02:03 -06:00
Linker configuration: Add missing platforms
The following platforms were missing: * Android * WindowsCE, WindowsPhone, WindowsStore and WindowsKernelModeDriver And enhance various Apple platforms support (iOS, tvOS, etc...) Fixes: #26439
This commit is contained in:
@@ -29,7 +29,7 @@ endif()
|
||||
|
||||
# We specify the platform linker information in the system file.
|
||||
if (NOT _INCLUDED_FILE)
|
||||
include(Platform/Linker/${CMAKE_SYSTEM_NAME}-ASM${ASM_DIALECT} OPTIONAL)
|
||||
include(Platform/Linker/${CMAKE_EFFECTIVE_SYSTEM_NAME}-ASM${ASM_DIALECT} OPTIONAL)
|
||||
endif ()
|
||||
|
||||
set(CMAKE_ASM${ASM_DIALECT}_LINKER_INFORMATION_LOADED 1)
|
||||
|
||||
@@ -31,7 +31,7 @@ endif()
|
||||
|
||||
# We specify the platform linker information in the system file.
|
||||
if (NOT _INCLUDED_FILE)
|
||||
include(Platform/Linker/${CMAKE_SYSTEM_NAME}-C OPTIONAL)
|
||||
include(Platform/Linker/${CMAKE_EFFECTIVE_SYSTEM_NAME}-C OPTIONAL)
|
||||
endif ()
|
||||
|
||||
_cmake_common_linker_platform_flags(C)
|
||||
|
||||
@@ -31,7 +31,7 @@ endif()
|
||||
|
||||
# We specify the platform linker information in the system file.
|
||||
if (NOT _INCLUDED_FILE)
|
||||
include(Platform/Linker/${CMAKE_SYSTEM_NAME}-CUDA OPTIONAL)
|
||||
include(Platform/Linker/${CMAKE_EFFECTIVE_SYSTEM_NAME}-CUDA OPTIONAL)
|
||||
endif ()
|
||||
|
||||
_cmake_common_linker_platform_flags(CUDA)
|
||||
|
||||
@@ -31,7 +31,7 @@ endif()
|
||||
|
||||
# We specify the platform linker information in the system file.
|
||||
if (NOT _INCLUDED_FILE)
|
||||
include(Platform/Linker/${CMAKE_SYSTEM_NAME}-CXX OPTIONAL)
|
||||
include(Platform/Linker/${CMAKE_EFFECTIVE_SYSTEM_NAME}-CXX OPTIONAL)
|
||||
endif ()
|
||||
|
||||
_cmake_common_linker_platform_flags(CXX)
|
||||
|
||||
@@ -31,7 +31,7 @@ endif()
|
||||
|
||||
# We specify the platform linker information in the system file.
|
||||
if (NOT _INCLUDED_FILE)
|
||||
include(Platform/Linker/${CMAKE_SYSTEM_NAME}-Fortran OPTIONAL)
|
||||
include(Platform/Linker/${CMAKE_EFFECTIVE_SYSTEM_NAME}-Fortran OPTIONAL)
|
||||
endif ()
|
||||
|
||||
_cmake_common_linker_platform_flags(Fortran)
|
||||
|
||||
@@ -31,7 +31,7 @@ endif()
|
||||
|
||||
# We specify the platform linker information in the system file.
|
||||
if (NOT _INCLUDED_FILE)
|
||||
include(Platform/Linker/${CMAKE_SYSTEM_NAME}-HIP OPTIONAL)
|
||||
include(Platform/Linker/${CMAKE_EFFECTIVE_SYSTEM_NAME}-HIP OPTIONAL)
|
||||
endif ()
|
||||
|
||||
_cmake_common_linker_platform_flags(HIP)
|
||||
|
||||
@@ -31,7 +31,7 @@ endif()
|
||||
|
||||
# We specify the platform linker information in the system file.
|
||||
if (NOT _INCLUDED_FILE)
|
||||
include(Platform/Linker/${CMAKE_SYSTEM_NAME}-OBJC OPTIONAL)
|
||||
include(Platform/Linker/${CMAKE_EFFECTIVE_SYSTEM_NAME}-OBJC OPTIONAL)
|
||||
endif ()
|
||||
|
||||
_cmake_common_linker_platform_flags(OBJC)
|
||||
|
||||
@@ -31,7 +31,7 @@ endif()
|
||||
|
||||
# We specify the platform linker information in the system file.
|
||||
if (NOT _INCLUDED_FILE)
|
||||
include(Platform/Linker/${CMAKE_SYSTEM_NAME}-OBJCXX OPTIONAL)
|
||||
include(Platform/Linker/${CMAKE_EFFECTIVE_SYSTEM_NAME}-OBJCXX OPTIONAL)
|
||||
endif ()
|
||||
|
||||
_cmake_common_linker_platform_flags(OBJCXX)
|
||||
|
||||
@@ -31,7 +31,7 @@ endif()
|
||||
|
||||
# We specify the platform linker information in the system file.
|
||||
if (NOT _INCLUDED_FILE)
|
||||
include(Platform/Linker/${CMAKE_SYSTEM_NAME}-Swift OPTIONAL)
|
||||
include(Platform/Linker/${CMAKE_EFFECTIVE_SYSTEM_NAME}-Swift OPTIONAL)
|
||||
endif ()
|
||||
|
||||
_cmake_common_linker_platform_flags(Swift)
|
||||
|
||||
5
Modules/Platform/Linker/Android-ASM.cmake
Normal file
5
Modules/Platform/Linker/Android-ASM.cmake
Normal file
@@ -0,0 +1,5 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
# GNU is the default linker
|
||||
include(Platform/Linker/Android-GNU-ASM)
|
||||
5
Modules/Platform/Linker/Android-C.cmake
Normal file
5
Modules/Platform/Linker/Android-C.cmake
Normal file
@@ -0,0 +1,5 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
# GNU is the default linker
|
||||
include(Platform/Linker/Android-GNU-C)
|
||||
5
Modules/Platform/Linker/Android-CXX.cmake
Normal file
5
Modules/Platform/Linker/Android-CXX.cmake
Normal file
@@ -0,0 +1,5 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
# GNU is the default linker
|
||||
include(Platform/Linker/Android-GNU-CXX)
|
||||
4
Modules/Platform/Linker/Android-GNU-ASM.cmake
Normal file
4
Modules/Platform/Linker/Android-GNU-ASM.cmake
Normal file
@@ -0,0 +1,4 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
include(Platform/Linker/Linux-GNU-ASM)
|
||||
4
Modules/Platform/Linker/Android-GNU-C.cmake
Normal file
4
Modules/Platform/Linker/Android-GNU-C.cmake
Normal file
@@ -0,0 +1,4 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
include(Platform/Linker/Linux-GNU-C)
|
||||
4
Modules/Platform/Linker/Android-GNU-CXX.cmake
Normal file
4
Modules/Platform/Linker/Android-GNU-CXX.cmake
Normal file
@@ -0,0 +1,4 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
include(Platform/Linker/Linux-GNU-CXX)
|
||||
4
Modules/Platform/Linker/Android-LLD-ASM.cmake
Normal file
4
Modules/Platform/Linker/Android-LLD-ASM.cmake
Normal file
@@ -0,0 +1,4 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
include(Platform/Linker/Linux-LLD-ASM)
|
||||
4
Modules/Platform/Linker/Android-LLD-C.cmake
Normal file
4
Modules/Platform/Linker/Android-LLD-C.cmake
Normal file
@@ -0,0 +1,4 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
include(Platform/Linker/Linux-LLD-C)
|
||||
4
Modules/Platform/Linker/Android-LLD-CXX.cmake
Normal file
4
Modules/Platform/Linker/Android-LLD-CXX.cmake
Normal file
@@ -0,0 +1,4 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
include(Platform/Linker/Linux-LLD-CXX)
|
||||
5
Modules/Platform/Linker/WindowsCE-C.cmake
Normal file
5
Modules/Platform/Linker/WindowsCE-C.cmake
Normal file
@@ -0,0 +1,5 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
# MSVC is the default linker
|
||||
include(Platform/Linker/WindowsCE-MSVC-C)
|
||||
5
Modules/Platform/Linker/WindowsCE-CXX.cmake
Normal file
5
Modules/Platform/Linker/WindowsCE-CXX.cmake
Normal file
@@ -0,0 +1,5 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
# MSVC is the default linker
|
||||
include(Platform/Linker/WindowsCE-MSVC-CXX)
|
||||
4
Modules/Platform/Linker/WindowsCE-MSVC-C.cmake
Normal file
4
Modules/Platform/Linker/WindowsCE-MSVC-C.cmake
Normal file
@@ -0,0 +1,4 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
include(Platform/Linker/Windows-MSVC-C)
|
||||
4
Modules/Platform/Linker/WindowsCE-MSVC-CXX.cmake
Normal file
4
Modules/Platform/Linker/WindowsCE-MSVC-CXX.cmake
Normal file
@@ -0,0 +1,4 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
include(Platform/Linker/Windows-MSVC-CXX)
|
||||
5
Modules/Platform/Linker/WindowsKernelModeDriver-C.cmake
Normal file
5
Modules/Platform/Linker/WindowsKernelModeDriver-C.cmake
Normal file
@@ -0,0 +1,5 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
# MSVC is the default linker
|
||||
include(Platform/Linker/WindowsKernelModeDriver-MSVC-C)
|
||||
@@ -0,0 +1,5 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
# MSVC is the default linker
|
||||
include(Platform/Linker/WindowsKernelModeDriver-MSVC-CXX)
|
||||
@@ -0,0 +1,4 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
include(Platform/Linker/Windows-MSVC-C)
|
||||
@@ -0,0 +1,4 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
include(Platform/Linker/Windows-MSVC-CXX)
|
||||
15
Modules/Platform/Linker/WindowsPhone-ASM.cmake
Normal file
15
Modules/Platform/Linker/WindowsPhone-ASM.cmake
Normal file
@@ -0,0 +1,15 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
block(SCOPE_FOR POLICIES)
|
||||
cmake_policy(SET CMP0054 NEW)
|
||||
|
||||
if(CMAKE_ASM_SIMULATE_ID STREQUAL "MSVC")
|
||||
# MSVC is the default linker
|
||||
include(Platform/Linker/WindowsPhone-MSVC-ASM)
|
||||
else()
|
||||
# GNU is the default linker
|
||||
include(Platform/Linker/WindowsPhone-GNU-ASM)
|
||||
endif()
|
||||
|
||||
endblock()
|
||||
15
Modules/Platform/Linker/WindowsPhone-C.cmake
Normal file
15
Modules/Platform/Linker/WindowsPhone-C.cmake
Normal file
@@ -0,0 +1,15 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
block(SCOPE_FOR POLICIES)
|
||||
cmake_policy(SET CMP0054 NEW)
|
||||
|
||||
if(CMAKE_C_SIMULATE_ID STREQUAL "MSVC")
|
||||
# MSVC is the default linker
|
||||
include(Platform/Linker/WindowsPhone-MSVC-C)
|
||||
else()
|
||||
# GNU is the default linker
|
||||
include(Platform/Linker/WindowsPhone-GNU-C)
|
||||
endif()
|
||||
|
||||
endblock()
|
||||
15
Modules/Platform/Linker/WindowsPhone-CXX.cmake
Normal file
15
Modules/Platform/Linker/WindowsPhone-CXX.cmake
Normal file
@@ -0,0 +1,15 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
block(SCOPE_FOR POLICIES)
|
||||
cmake_policy(SET CMP0054 NEW)
|
||||
|
||||
if(CMAKE_CXX_SIMULATE_ID STREQUAL "MSVC")
|
||||
# MSVC is the default linker
|
||||
include(Platform/Linker/WindowsPhone-MSVC-CXX)
|
||||
else()
|
||||
# GNU is the default linker
|
||||
include(Platform/Linker/WindowsPhone-GNU-CXX)
|
||||
endif()
|
||||
|
||||
endblock()
|
||||
4
Modules/Platform/Linker/WindowsPhone-GNU-ASM.cmake
Normal file
4
Modules/Platform/Linker/WindowsPhone-GNU-ASM.cmake
Normal file
@@ -0,0 +1,4 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
include(Platform/Linker/Windows-GNU-ASM)
|
||||
4
Modules/Platform/Linker/WindowsPhone-GNU-C.cmake
Normal file
4
Modules/Platform/Linker/WindowsPhone-GNU-C.cmake
Normal file
@@ -0,0 +1,4 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
include(Platform/Linker/Windows-GNU-C)
|
||||
4
Modules/Platform/Linker/WindowsPhone-GNU-CXX.cmake
Normal file
4
Modules/Platform/Linker/WindowsPhone-GNU-CXX.cmake
Normal file
@@ -0,0 +1,4 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
include(Platform/Linker/Windows-GNU-CXX)
|
||||
4
Modules/Platform/Linker/WindowsPhone-LLD-ASM.cmake
Normal file
4
Modules/Platform/Linker/WindowsPhone-LLD-ASM.cmake
Normal file
@@ -0,0 +1,4 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
include(Platform/Linker/Windows-LLD-ASM)
|
||||
4
Modules/Platform/Linker/WindowsPhone-LLD-C.cmake
Normal file
4
Modules/Platform/Linker/WindowsPhone-LLD-C.cmake
Normal file
@@ -0,0 +1,4 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
include(Platform/Linker/Windows-LLD-C)
|
||||
4
Modules/Platform/Linker/WindowsPhone-LLD-CXX.cmake
Normal file
4
Modules/Platform/Linker/WindowsPhone-LLD-CXX.cmake
Normal file
@@ -0,0 +1,4 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
include(Platform/Linker/Windows-LLD-CXX)
|
||||
4
Modules/Platform/Linker/WindowsPhone-MSVC-ASM.cmake
Normal file
4
Modules/Platform/Linker/WindowsPhone-MSVC-ASM.cmake
Normal file
@@ -0,0 +1,4 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
include(Platform/Linker/Windows-MSVC-ASM)
|
||||
4
Modules/Platform/Linker/WindowsPhone-MSVC-C.cmake
Normal file
4
Modules/Platform/Linker/WindowsPhone-MSVC-C.cmake
Normal file
@@ -0,0 +1,4 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
include(Platform/Linker/Windows-MSVC-C)
|
||||
4
Modules/Platform/Linker/WindowsPhone-MSVC-CXX.cmake
Normal file
4
Modules/Platform/Linker/WindowsPhone-MSVC-CXX.cmake
Normal file
@@ -0,0 +1,4 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
include(Platform/Linker/Windows-MSVC-CXX)
|
||||
15
Modules/Platform/Linker/WindowsStore-ASM.cmake
Normal file
15
Modules/Platform/Linker/WindowsStore-ASM.cmake
Normal file
@@ -0,0 +1,15 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
block(SCOPE_FOR POLICIES)
|
||||
cmake_policy(SET CMP0054 NEW)
|
||||
|
||||
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()
|
||||
|
||||
endblock()
|
||||
15
Modules/Platform/Linker/WindowsStore-C.cmake
Normal file
15
Modules/Platform/Linker/WindowsStore-C.cmake
Normal file
@@ -0,0 +1,15 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
block(SCOPE_FOR POLICIES)
|
||||
cmake_policy(SET CMP0054 NEW)
|
||||
|
||||
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()
|
||||
|
||||
endblock()
|
||||
15
Modules/Platform/Linker/WindowsStore-CXX.cmake
Normal file
15
Modules/Platform/Linker/WindowsStore-CXX.cmake
Normal file
@@ -0,0 +1,15 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
block(SCOPE_FOR POLICIES)
|
||||
cmake_policy(SET CMP0054 NEW)
|
||||
|
||||
if(CMAKE_CXX_SIMULATE_ID STREQUAL "MSVC")
|
||||
# MSVC is the default linker
|
||||
include(Platform/Linker/WindowsStore-MSVC-CXX)
|
||||
else()
|
||||
# GNU is the default linker
|
||||
include(Platform/Linker/WindowsStore-GNU-CXX)
|
||||
endif()
|
||||
|
||||
endblock()
|
||||
4
Modules/Platform/Linker/WindowsStore-GNU-ASM.cmake
Normal file
4
Modules/Platform/Linker/WindowsStore-GNU-ASM.cmake
Normal file
@@ -0,0 +1,4 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
include(Platform/Linker/Windows-GNU-ASM)
|
||||
4
Modules/Platform/Linker/WindowsStore-GNU-C.cmake
Normal file
4
Modules/Platform/Linker/WindowsStore-GNU-C.cmake
Normal file
@@ -0,0 +1,4 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
include(Platform/Linker/Windows-GNU-C)
|
||||
4
Modules/Platform/Linker/WindowsStore-GNU-CXX.cmake
Normal file
4
Modules/Platform/Linker/WindowsStore-GNU-CXX.cmake
Normal file
@@ -0,0 +1,4 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
include(Platform/Linker/Windows-GNU-CXX)
|
||||
4
Modules/Platform/Linker/WindowsStore-LLD-ASM.cmake
Normal file
4
Modules/Platform/Linker/WindowsStore-LLD-ASM.cmake
Normal file
@@ -0,0 +1,4 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
include(Platform/Linker/Windows-LLD-ASM)
|
||||
4
Modules/Platform/Linker/WindowsStore-LLD-C.cmake
Normal file
4
Modules/Platform/Linker/WindowsStore-LLD-C.cmake
Normal file
@@ -0,0 +1,4 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
include(Platform/Linker/Windows-LLD-C)
|
||||
4
Modules/Platform/Linker/WindowsStore-LLD-CXX.cmake
Normal file
4
Modules/Platform/Linker/WindowsStore-LLD-CXX.cmake
Normal file
@@ -0,0 +1,4 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
include(Platform/Linker/Windows-LLD-CXX)
|
||||
4
Modules/Platform/Linker/WindowsStore-MSVC-ASM.cmake
Normal file
4
Modules/Platform/Linker/WindowsStore-MSVC-ASM.cmake
Normal file
@@ -0,0 +1,4 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
include(Platform/Linker/Windows-MSVC-ASM)
|
||||
4
Modules/Platform/Linker/WindowsStore-MSVC-C.cmake
Normal file
4
Modules/Platform/Linker/WindowsStore-MSVC-C.cmake
Normal file
@@ -0,0 +1,4 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
include(Platform/Linker/Windows-MSVC-C)
|
||||
4
Modules/Platform/Linker/WindowsStore-MSVC-CXX.cmake
Normal file
4
Modules/Platform/Linker/WindowsStore-MSVC-CXX.cmake
Normal file
@@ -0,0 +1,4 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
|
||||
include(Platform/Linker/Windows-MSVC-CXX)
|
||||
Reference in New Issue
Block a user