mirror of
https://github.com/permissionlesstech/bitchat.git
synced 2026-07-24 23:25:19 +00:00
75 lines
2.5 KiB
Swift
75 lines
2.5 KiB
Swift
// swift-tools-version: 5.9
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "bitchat",
|
|
defaultLocalization: "en",
|
|
platforms: [
|
|
.iOS(.v16),
|
|
.macOS(.v13)
|
|
],
|
|
products: [
|
|
.executable(
|
|
name: "bitchat",
|
|
targets: ["bitchat"]
|
|
)
|
|
],
|
|
dependencies: [
|
|
.package(path: "localPackages/Arti"),
|
|
.package(path: "localPackages/BitFoundation"),
|
|
.package(path: "localPackages/BitLogger"),
|
|
.package(url: "https://github.com/21-DOT-DEV/swift-secp256k1", exact: "0.21.1")
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "bitchat",
|
|
dependencies: [
|
|
.product(name: "P256K", package: "swift-secp256k1"),
|
|
.product(name: "BitFoundation", package: "BitFoundation"),
|
|
.product(name: "BitLogger", package: "BitLogger"),
|
|
.product(name: "Tor", package: "Arti")
|
|
],
|
|
path: "bitchat",
|
|
exclude: [
|
|
"Info.plist",
|
|
"Assets.xcassets",
|
|
"_PreviewHelpers/PreviewAssets.xcassets",
|
|
"bitchat.entitlements",
|
|
"bitchat-macOS.entitlements",
|
|
"LaunchScreen.storyboard",
|
|
"ViewModels/Extensions/README.md"
|
|
],
|
|
resources: [
|
|
.process("Localizable.xcstrings")
|
|
]
|
|
),
|
|
.testTarget(
|
|
name: "bitchatTests",
|
|
dependencies: [
|
|
"bitchat",
|
|
.product(name: "BitFoundation", package: "BitFoundation")
|
|
],
|
|
path: "bitchatTests",
|
|
exclude: [
|
|
"Info.plist",
|
|
"README.md",
|
|
// CI perf gate data (read by scripts/check-perf-floors.sh),
|
|
// not a test resource.
|
|
"Performance/perf-floors.json"
|
|
],
|
|
resources: [
|
|
.process("Localization"),
|
|
// Only the vector fixture: declaring the whole "Noise"
|
|
// directory would claim its .swift test files as resources
|
|
// and silently drop them from compilation.
|
|
.process("Noise/NoiseTestVectors.json"),
|
|
// Frozen output produced by the released 733098bb private-DM
|
|
// implementation; proves receive compatibility independently
|
|
// of the refactored legacy generator.
|
|
.process("Nostr/Fixtures")
|
|
]
|
|
)
|
|
]
|
|
)
|