mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
35 lines
985 B
Swift
35 lines
985 B
Swift
// swift-tools-version: 5.9
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "swift-plugin-server",
|
|
platforms: [
|
|
.macOS(.v13)
|
|
],
|
|
products: [
|
|
.executable(name: "swift-plugin-server", targets: ["swift-plugin-server"]),
|
|
.library(name: "SwiftInProcPluginServer", type: .dynamic, targets: ["SwiftInProcPluginServer"]),
|
|
],
|
|
dependencies: [
|
|
.package(path: "../../../swift-syntax"),
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "swift-plugin-server",
|
|
dependencies: [
|
|
.product(name: "_SwiftCompilerPluginMessageHandling", package: "swift-syntax"),
|
|
.product(name: "_SwiftLibraryPluginProvider", package: "swift-syntax"),
|
|
]
|
|
),
|
|
.target(
|
|
name: "SwiftInProcPluginServer",
|
|
dependencies: [
|
|
.product(name: "_SwiftCompilerPluginMessageHandling", package: "swift-syntax"),
|
|
.product(name: "_SwiftLibraryPluginProvider", package: "swift-syntax"),
|
|
]
|
|
),
|
|
],
|
|
cxxLanguageStandard: .cxx17
|
|
)
|