Skip to content

Commit 78ec02f

Browse files
committed
Add Swift package
1 parent 303925d commit 78ec02f

2 files changed

Lines changed: 24 additions & 1 deletion

File tree

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,5 @@ Artifacts
1515
*.xcuserdata
1616
.idea
1717
*.xccheckout
18-
xcuserdata
18+
xcuserdata
19+
.swiftpm

Package.swift

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// swift-tools-version:5.3
2+
import PackageDescription
3+
4+
let package = Package(
5+
name: "TLIndexPathTools",
6+
platforms: [
7+
.iOS("8.0")
8+
],
9+
products: [
10+
.library(name: "TLIndexPathTools", targets: ["TLIndexPathTools"])
11+
],
12+
targets: [
13+
.target(
14+
name: "TLIndexPathTools",
15+
path: "TLIndexPathTools",
16+
exclude: [
17+
"Info.plist",
18+
],
19+
publicHeadersPath: "TLIndexPathTools"
20+
)
21+
]
22+
)

0 commit comments

Comments
 (0)