Skip to content

Commit 51d096c

Browse files
GoosBrent Mifsud
authored andcommitted
Add SPM support
1 parent 7bff4c1 commit 51d096c

File tree

3 files changed

+51
-0
lines changed

3 files changed

+51
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
## Build generated
99
build/
10+
.build/
1011
DerivedData/
1112

1213
## Various settings

Package.resolved

Lines changed: 25 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// swift-tools-version:5.3
2+
// The swift-tools-version declares the minimum version of Swift required to build this package.
3+
4+
import PackageDescription
5+
6+
let package = Package(
7+
name: "RxIGListKit",
8+
platforms: [.iOS(.v9)],
9+
products: [
10+
.library(
11+
name: "RxIGListKit",
12+
targets: ["RxIGListKit"]),
13+
],
14+
dependencies: [
15+
.package(url: "https://github.com/ReactiveX/RxSwift.git", from: "6.0.0"),
16+
.package(url: "https://github.com/3a4oT/IGListKit.git", from: "4.0.0")
17+
],
18+
targets: [
19+
.target(
20+
name: "RxIGListKit",
21+
dependencies: ["RxSwift", "IGListKit"],
22+
path: "./RxIGListKit"
23+
)
24+
]
25+
)

0 commit comments

Comments
 (0)