26 lines
981 B
Swift
Executable File
26 lines
981 B
Swift
Executable File
// swift-tools-version:5.3
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "CapCollectorServer",
|
|
platforms: [
|
|
.macOS(.v10_15)
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/vapor/vapor", from: "4.0.0"),
|
|
],
|
|
targets: [
|
|
.target(name: "App",
|
|
dependencies: [.product(name: "Vapor", package: "vapor")],
|
|
swiftSettings: [
|
|
// Enable better optimizations when building in Release configuration. Despite the use of
|
|
// the `.unsafeFlags` construct required by SwiftPM, this flag is recommended for Release
|
|
// builds. See <https://github.com/swift-server/guides#building-for-production> for details.
|
|
.unsafeFlags(["-cross-module-optimization"], .when(configuration: .release))
|
|
]),
|
|
.target(name: "Run", dependencies: ["App"]),
|
|
.testTarget(name: "AppTests", dependencies: ["App"]),
|
|
]
|
|
)
|
|
|