Skip to content

[5.1][CMake] Split overlay list to multiple lines (NFC) #24422

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 2, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 47 additions & 1 deletion stdlib/public/Darwin/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,53 @@ if(SWIFT_BUILD_STATIC_SDK_OVERLAY)
list(APPEND SWIFT_SDK_OVERLAY_LIBRARY_BUILD_TYPES STATIC)
endif()

set(all_overlays "Accelerate;AppKit;ARKit;AssetsLibrary;AVFoundation;CallKit;CloudKit;Compression;Contacts;CoreAudio;CoreData;CoreFoundation;CoreGraphics;CoreImage;CoreLocation;CoreMedia;CryptoTokenKit;Dispatch;Foundation;GameplayKit;GLKit;HomeKit;IOKit;Intents;MapKit;MediaPlayer;Metal;MetalKit;ModelIO;NaturalLanguage;Network;ObjectiveC;OpenCL;os;Photos;QuartzCore;SafariServices;SceneKit;simd;SpriteKit;UIKit;Vision;WatchKit;XCTest;XPC")
set(all_overlays
Accelerate
AppKit
ARKit
AssetsLibrary
AVFoundation
CallKit
CloudKit
Compression
Contacts
CoreAudio
CoreData
CoreFoundation
CoreGraphics
CoreImage
CoreLocation
CoreMedia
CryptoTokenKit
Dispatch
Foundation
GameplayKit
GLKit
HomeKit
IOKit
Intents
MapKit
MediaPlayer
Metal
MetalKit
ModelIO
NaturalLanguage
Network
ObjectiveC
OpenCL
os
Photos
QuartzCore
SafariServices
SceneKit
simd
SpriteKit
UIKit
Vision
WatchKit
XCTest
XPC
)

if(DEFINED SWIFT_OVERLAY_TARGETS)
set(overlays_to_build ${SWIFT_OVERLAY_TARGETS})
Expand Down