mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Move 'PluginProvider' logic to 'SwiftLibraryPluginProvider' module so the compiler can reuse that logic for the actual in-process plugins.
23 lines
450 B
Swift
23 lines
450 B
Swift
// swift-tools-version: 5.6
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "swift-plugin-server",
|
|
platforms: [
|
|
.macOS(.v10_15)
|
|
],
|
|
dependencies: [
|
|
.package(path: "../../../swift-syntax"),
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "swift-plugin-server",
|
|
dependencies: [
|
|
.product(name: "SwiftCompilerPluginMessageHandling", package: "swift-syntax"),
|
|
]
|
|
),
|
|
],
|
|
cxxLanguageStandard: .cxx17
|
|
)
|