30 lines
1.2 KiB
Swift
Executable File
30 lines
1.2 KiB
Swift
Executable File
// swift-tools-version:5.5
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Caps-Server",
|
|
platforms: [
|
|
.macOS(.v12)
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/vapor/vapor", from: "4.0.0"),
|
|
.package(url: "https://github.com/christophhagen/Clairvoyant", from: "0.5.0"),
|
|
],
|
|
targets: [
|
|
.target(name: "App",
|
|
dependencies: [
|
|
.product(name: "Vapor", package: "vapor"),
|
|
.product(name: "Clairvoyant", package: "Clairvoyant"),
|
|
],
|
|
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))
|
|
]),
|
|
.executableTarget(name: "Run", dependencies: ["App"]),
|
|
.testTarget(name: "AppTests", dependencies: ["App"]),
|
|
]
|
|
)
|
|
|