mirror of
https://github.com/permissionlesstech/bitchat.git
synced 2026-07-24 23:45:18 +00:00
* Run local packages’ tests as well on CI * BitFoundation module to centralize shared components
28 lines
526 B
Swift
28 lines
526 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"]
|
|
)
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "BitFoundation",
|
|
path: "Sources"
|
|
),
|
|
.testTarget(
|
|
name: "BitFoundationTests",
|
|
dependencies: ["BitFoundation"],
|
|
)
|
|
]
|
|
)
|