1// swift-tools-version: 5.5
2
3import PackageDescription
4
5let package = Package(
6 name: "LiveKitBridge",
7 platforms: [
8 .macOS(.v10_15)
9 ],
10 products: [
11 // Products define the executables and libraries a package produces, and make them visible to other packages.
12 .library(
13 name: "LiveKitBridge",
14 type: .static,
15 targets: ["LiveKitBridge"])
16 ],
17 dependencies: [
18 .package(url: "https://github.com/livekit/client-sdk-swift.git", .exact("1.1.6"))
19 ],
20 targets: [
21 // Targets are the basic building blocks of a package. A target can define a module or a test suite.
22 // Targets can depend on other targets in this package, and on products in packages this package depends on.
23 .target(
24 name: "LiveKitBridge",
25 dependencies: [.product(name: "LiveKit", package: "client-sdk-swift")])
26 ]
27)