Skip to content

Commit 5cdf6a9

Browse files
committed
Added Package.swift
1 parent 0ffeb06 commit 5cdf6a9

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

Package.swift

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// swift-tools-version:5.7
2+
3+
import PackageDescription
4+
5+
let package = Package(
6+
name: "NativeUI",
7+
platforms: [.iOS(.v11)],
8+
products: [
9+
.library(
10+
name: "NativeUI",
11+
targets: ["NativeUI"]
12+
)
13+
],
14+
targets: [
15+
.target(name: "NativeUI", path: "NativeUI/Sources")
16+
]
17+
)

0 commit comments

Comments
 (0)