Skip to content

Commit 8711cb0

Browse files
authored
Convert it to SwiftPackageManager
1 parent 50d92a5 commit 8711cb0

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

Package.swift

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
// swift-tools-version:5.3
2+
import PackageDescription
3+
4+
let package = Package(
5+
name: "Spring",
6+
platforms: [
7+
.iOS(.v8),
8+
.tvOS(.v11)
9+
],
10+
products: [
11+
.library(
12+
name: "Spring",
13+
targets: ["Spring"]
14+
),
15+
],
16+
targets: [
17+
.target(
18+
name: "Spring",
19+
path: "Spring",
20+
exclude: ["Info.plist"],
21+
sources: ["."],
22+
resources: [
23+
// iOS resources
24+
.process("*.xib"),
25+
.process("../SpringApp/*.xcassets")
26+
]
27+
)
28+
]
29+
)

0 commit comments

Comments
 (0)