Skip to content

Commit 8867794

Browse files
committed
wip-package
1 parent ced32d8 commit 8867794

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

[email protected]

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
// swift-tools-version:5.7
2+
3+
import PackageDescription
4+
5+
let package = Package(
6+
name: "swiftui-introspect",
7+
platforms: [
8+
.iOS(.v13),
9+
.tvOS(.v13),
10+
.macOS(.v10_15),
11+
],
12+
products: [
13+
.library(name: "SwiftUIIntrospect", targets: ["SwiftUIIntrospect"]),
14+
.library(name: "SwiftUIIntrospect-Static", type: .static, targets: ["SwiftUIIntrospect"]),
15+
.library(name: "SwiftUIIntrospect-Dynamic", type: .dynamic, targets: ["SwiftUIIntrospect"]),
16+
],
17+
targets: [
18+
.target(
19+
name: "SwiftUIIntrospect",
20+
path: "Sources"
21+
),
22+
]
23+
)

0 commit comments

Comments
 (0)