Files
swift-mirror/tools/swift-plugin-server/Package.swift
Rintaro Ishizaki be419a3428 [Macros] Use 'LibraryPluginProvider' in swift-plugin-server
Move 'PluginProvider' logic to 'SwiftLibraryPluginProvider' module
so the compiler can reuse that logic for the actual in-process plugins.
2024-05-07 09:47:04 -07:00

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
)