Skip to content

Commit b3e1e54

Browse files
committed
Require macOS 10.15
Motivation: The same requirement is being added to SwiftPM as part of swiftlang/swift-package-manager#3202. Without this change SourceKit-LSP will fail to build with error: ``` the library 'SKSwiftPMWorkspace' requires macos 10.10, but depends on the product 'SwiftPM-auto' which requires macos 10.15; consider changing the library 'SKSwiftPMWorkspace' to require macos 10.15 or later, or the product 'SwiftPM-auto' to require macos 10.10 or earlier. ``` Modification: Require macOS 10.15. Result: SourceKit-LSP builds successfully with changeset swiftlang/swift-package-manager#3202.
1 parent dfe244a commit b3e1e54

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Package.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import PackageDescription
44

55
let package = Package(
66
name: "SourceKitLSP",
7+
platforms: [.macOS(.v10_15)],
78
products: [
89
.executable(
910
name: "sourcekit-lsp",

0 commit comments

Comments
 (0)