-
Notifications
You must be signed in to change notification settings - Fork 5
/
Package.swift
33 lines (32 loc) · 986 Bytes
/
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
// swift-tools-version:5.5
import PackageDescription
let package = Package(
name: "GeospatialKit",
platforms: [
.iOS(.v15)
],
products: [
.library(
name: "GeospatialKit",
targets: ["GeospatialKit"]),
],
dependencies: [
.package(name: "GeospatialSwift", url: "https://github.com/MonsantoCo/GeospatialSwift.git", from: "1.2.1"),
.package(name: "TimberSwift", url: "https://github.com/MonsantoCo/TimberSwift.git", from: "1.0.0"),
],
targets: [
.target(
name: "GeospatialKit",
dependencies: ["GeospatialSwift", "TimberSwift"],
path: "GeospatialKit",
exclude: ["Info.plist"]
),
.testTarget(
name: "GeospatialKitTests",
dependencies: ["GeospatialKit"],
path: "GeospatialKitTests",
exclude: ["Info.plist"],
resources: [.process("Data/WktTestData.json")]
)
]
)