Skip to content

Commit 24f8803

Browse files
authored
Merge pull request #1690 from ahoppen/allow-swift-5
Support building SourceKit-LSP using Swift 5 language mode
2 parents 6248d22 + 2aabaa8 commit 24f8803

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Package.swift

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version: 6.0
1+
// swift-tools-version: 5.10
22

33
import Foundation
44
import PackageDescription
@@ -405,7 +405,8 @@ let package = Package(
405405
.product(name: "SwiftToolsSupport-auto", package: "swift-tools-support-core"),
406406
]
407407
),
408-
]
408+
],
409+
swiftLanguageVersions: [.v5, .version("6")]
409410
)
410411

411412
// MARK: - Parse build arguments

0 commit comments

Comments
 (0)