mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
This makes it more explicit what the install component of a target library is if you don't see one (and its marked as IS_SDK_OVERLAY). Explicit in this case makes more sense, as you don't have to rely on knowledge of how `add_swift_target_library` is implemented to understand what component is used to install the target.
9 lines
319 B
CMake
9 lines
319 B
CMake
add_swift_target_library(swiftWinSDK ${SWIFT_STDLIB_LIBRARY_BUILD_TYPES} IS_SDK_OVERLAY
|
|
WinSDK.swift
|
|
|
|
SWIFT_COMPILE_FLAGS ${SWIFT_RUNTIME_SWIFT_COMPILE_FLAGS} ${SWIFT_STANDARD_LIBRARY_SWIFT_FLAGS}
|
|
LINK_FLAGS "${SWIFT_RUNTIME_SWIFT_LINK_FLAGS}"
|
|
TARGET_SDKS WINDOWS
|
|
INSTALL_IN_COMPONENT sdk-overlay)
|
|
|