-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathPackage.swift
More file actions
21 lines (19 loc) · 860 Bytes
/
Package.swift
File metadata and controls
21 lines (19 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// swift-tools-version:5.3
// You can downgrade to an earlier Swift version if needed (5.0 or newer should be OK)
import PackageDescription
let package = Package(
name: "FireAlarm",
platforms: [
.macOS(.v10_16), // You can downgrade to 10.12 or newer if needed
],
dependencies: [
.package(url: "git://github.com/SOBotics/SwiftChatSE", from: "5.1.0"),
.package(url: "git://github.com/SOBotics/SwiftStack", from: "0.5.0"),
.package(url: "git://github.com/krzyzanowskim/CryptoSwift", from: "0.9.0")
],
targets: [
.target(name: "FireAlarmCore", dependencies: ["SwiftChatSE", "SwiftStack", "CryptoSwift"]),
.target(name: "Frontend", dependencies: ["FireAlarmCore", "SwiftChatSE", "CryptoSwift"]),
.testTarget(name: "FireAlarmTests", dependencies: ["Frontend"])
]
)