We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f1de23 commit cfc412aCopy full SHA for cfc412a
livekit-uniffi/Package.swift
@@ -0,0 +1,36 @@
1
+// swift-tools-version:6.0
2
+// (Xcode16.0+)
3
+
4
+// For local testing, run ./swift.sh to generate the xcframework
5
6
+import PackageDescription
7
8
+let package = Package(
9
+ name: "LiveKitFFI",
10
+ platforms: [
11
+ .iOS(.v13),
12
+ .macOS(.v10_15),
13
+ .macCatalyst(.v14),
14
+ .visionOS(.v2),
15
+ .tvOS(.v17),
16
+ ],
17
+ products: [
18
+ .library(
19
20
+ targets: ["LiveKitFFI"]
21
+ )
22
23
+ targets: [
24
+ .binaryTarget(
25
+ name: "LiveKitFFIBinary",
26
+ path: "../target/LiveKitFFI.xcframework"
27
+ ),
28
+ .target(
29
30
+ dependencies: ["LiveKitFFIBinary"],
31
+ path: "generated/swift",
32
+ sources: ["livekit_uniffi.swift"],
33
+ publicHeadersPath: "."
34
35
+ ]
36
+)
0 commit comments