mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-13 05:42:59 +00:00
e730a9d029
Co-Authored-By: Mikayla <mikayla@zed.dev> This bumps to the latest v1 version of swift SDK. We could bump to 2, but it sounds like this will already have some race condition fixes (and a click around locally seems less prone to deadlocking so far...) Release Notes: - N/A
27 lines
917 B
Swift
27 lines
917 B
Swift
// swift-tools-version: 5.5
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "LiveKitBridge",
|
|
platforms: [
|
|
.macOS(.v10_15)
|
|
],
|
|
products: [
|
|
// Products define the executables and libraries a package produces, and make them visible to other packages.
|
|
.library(
|
|
name: "LiveKitBridge",
|
|
type: .static,
|
|
targets: ["LiveKitBridge"])
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/livekit/client-sdk-swift.git", .exact("1.1.6"))
|
|
],
|
|
targets: [
|
|
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
|
|
// Targets can depend on other targets in this package, and on products in packages this package depends on.
|
|
.target(
|
|
name: "LiveKitBridge",
|
|
dependencies: [.product(name: "LiveKit", package: "client-sdk-swift")])
|
|
]
|
|
)
|