mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
24 lines
573 B
Swift
24 lines
573 B
Swift
// swift-tools-version: 5.10
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "MeshtasticProtobufs",
|
|
products: [
|
|
.library(
|
|
name: "MeshtasticProtobufs",
|
|
targets: ["MeshtasticProtobufs"]
|
|
),
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/apple/swift-protobuf.git", from: "1.33.3"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "MeshtasticProtobufs",
|
|
dependencies: [
|
|
.product(name: "SwiftProtobuf", package: "swift-protobuf")
|
|
]
|
|
)
|
|
]
|
|
)
|