Skip to content

Commit b626a74

Browse files
committed
Added swift package manageer support
1 parent 88df794 commit b626a74

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

Package.swift

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
// swift-tools-version:5.1
2+
3+
import PackageDescription
4+
5+
let package = Package(
6+
name: "ChatLayout",
7+
platforms: [
8+
.iOS(.v12)
9+
],
10+
products: [
11+
.library(
12+
name: "ChatLayout",
13+
targets: ["ChatLayout"]
14+
)
15+
],
16+
targets: [
17+
.target(
18+
name: "ChatLayout",
19+
dependencies: [],
20+
path: "ChatLayout/Classes"
21+
),
22+
.testTarget(
23+
name: "ChatLayoutTests",
24+
dependencies: ["ChatLayout"],
25+
path: "Example/Tests"
26+
)
27+
],
28+
swiftLanguageVersions: [.v5]
29+
)

0 commit comments

Comments
 (0)