// 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 )