-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
41 lines (33 loc) · 965 Bytes
/
Package.swift
File metadata and controls
41 lines (33 loc) · 965 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
34
35
36
37
38
39
40
41
// swift-tools-version:5.7
/* Package.swift
Version: 1.2.1
For iOS and macOS only. Use Stars to adopt for the specifics you need.
Created by Mikhail Zhigulin in 7531.
Copyright © 7531 - 7534 Mikhail A. Zhigulin of Novosibirsk
Copyright © 7533 - 7534 PerseusRealDeal
Licensed under the MIT license. See LICENSE file.
All rights reserved.
Abstract:
Package manifest for PerseusGeoKit.
*/
import PackageDescription
let package = Package(
name: "PerseusGeoKit",
products: [
.library(
name: "PerseusGeoKit",
targets: ["PerseusGeoKit"])
],
dependencies: [
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"),
],
targets: [
.target(
name: "PerseusGeoKit",
dependencies: []),
.testTarget(
name: "UnitTests",
dependencies: ["PerseusGeoKit"])
]
)