-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathPackage.swift
More file actions
32 lines (31 loc) · 1.18 KB
/
Package.swift
File metadata and controls
32 lines (31 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// swift-tools-version:5.8
import PackageDescription
let package = Package(
name: "Pouch",
platforms: [.macOS("13")],
products: [
.executable(name: "pouch", targets: ["Pouch"]),
.library(name: "PouchFramework", targets: ["PouchFramework"])
],
dependencies: [
.package(url: "https://github.com/apple/swift-argument-parser", exact: "1.5.0"),
.package(url: "https://github.com/jpsim/Yams", exact: "4.0.4"),
.package(url: "https://github.com/sunshinejr/firebase-ios-sdk", branch: "fork")
],
targets: [
.executableTarget(
name: "Pouch",
dependencies: [
.target(name: "PouchFramework"),
.product(name: "ArgumentParser", package: "swift-argument-parser"),
.product(name: "Yams", package: "Yams")
]),
.target(
name: "PouchFramework",
dependencies: [
.product(name: "FirebaseRemoteConfig", package: "firebase-ios-sdk"),
.product(name: "ArgumentParser", package: "swift-argument-parser"),
]),
.testTarget(name: "PouchTests", dependencies: ["PouchFramework", "Yams"]),
]
)