mirror of
https://github.com/permissionlesstech/bitchat.git
synced 2026-07-25 01:45:20 +00:00
34 lines
702 B
Swift
34 lines
702 B
Swift
// swift-tools-version: 5.9
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "BitFoundation",
|
|
platforms: [
|
|
.iOS(.v16),
|
|
.macOS(.v13)
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "BitFoundation",
|
|
targets: ["BitFoundation"]
|
|
)
|
|
],
|
|
dependencies: [
|
|
.package(path: "../BitLogger")
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "BitFoundation",
|
|
dependencies: [
|
|
.product(name: "BitLogger", package: "BitLogger"),
|
|
],
|
|
path: "Sources"
|
|
),
|
|
.testTarget(
|
|
name: "BitFoundationTests",
|
|
dependencies: ["BitFoundation"],
|
|
)
|
|
]
|
|
)
|