zed/crates/live_kit_client2/LiveKitBridge2/Package.swift

28 lines
925 B
Swift
Raw Normal View History

2023-10-31 21:04:03 +00:00
// swift-tools-version: 5.5
import PackageDescription
let package = Package(
2023-11-01 17:52:15 +00:00
name: "LiveKitBridge2",
2023-10-31 21:04:03 +00:00
platforms: [
.macOS(.v10_15)
],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
2023-11-01 17:52:15 +00:00
name: "LiveKitBridge2",
2023-10-31 21:04:03 +00:00
type: .static,
2023-11-01 17:52:15 +00:00
targets: ["LiveKitBridge2"]),
2023-10-31 21:04:03 +00:00
],
dependencies: [
.package(url: "https://github.com/livekit/client-sdk-swift.git", .exact("1.0.12")),
],
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(
2023-11-01 17:52:15 +00:00
name: "LiveKitBridge2",
2023-10-31 21:04:03 +00:00
dependencies: [.product(name: "LiveKit", package: "client-sdk-swift")]),
]
)