-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Package.swift
56 lines (54 loc) · 1.77 KB
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// swift-tools-version:5.7
import PackageDescription
// swiftlint:disable line_length
let package = Package(
name: "ParseServerSwift",
platforms: [
.iOS(.v13),
.macCatalyst(.v13),
.macOS(.v10_15),
.tvOS(.v13),
.watchOS(.v6)
],
products: [
.library(
name: "ParseServerSwift",
targets: ["ParseServerSwift"]
)
],
dependencies: [
.package(
url: "https://github.com/vapor/vapor.git",
.upToNextMajor(from: "4.102.1")
),
.package(
url: "https://github.com/netreconlab/Parse-Swift.git",
.upToNextMajor(from: "5.11.2")
)
],
targets: [
.target(
name: "ParseServerSwift",
dependencies: [
.product(name: "Vapor", package: "vapor"),
.product(name: "ParseSwift", package: "Parse-Swift")
]),
.executableTarget(
name: "App",
dependencies: [.target(name: "ParseServerSwift")],
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/blob/main/docs/building.md#building-for-production> for details.
.unsafeFlags(["-cross-module-optimization"], .when(configuration: .release))
]
),
.testTarget(
name: "ParseServerSwiftTests",
dependencies: [
.target(name: "ParseServerSwift"),
.product(name: "XCTVapor", package: "vapor")
]
)
]
)