-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPackage.swift
More file actions
33 lines (32 loc) · 804 Bytes
/
Package.swift
File metadata and controls
33 lines (32 loc) · 804 Bytes
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: 6.0
import PackageDescription
let package = Package(
name: "KMLKit",
platforms: [
.macOS(.v10_13),
.iOS(.v14)
],
products: [
.library(name: "KMLKit", targets: ["KMLKit"]),
],
dependencies: [
.package(url: "https://github.com/weichsel/ZIPFoundation.git", from: "0.9.12")
],
targets: [
.target(name: "ExceptionHelper"),
.target(
name: "KMLKit",
dependencies: ["ExceptionHelper", "ZIPFoundation"],
cSettings: [
.headerSearchPath("include")
]
),
.testTarget(
name: "KMLKitTests",
dependencies: ["KMLKit"],
resources: [
.copy("Resources")
]
),
]
)