-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
24 lines (23 loc) · 842 Bytes
/
Copy pathPackage.swift
File metadata and controls
24 lines (23 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// swift-tools-version: 6.2
import PackageDescription
let package = Package(
name: "CodexQuotaMonitor",
platforms: [.macOS(.v14)],
products: [
.library(name: "QuotaCore", targets: ["QuotaCore"]),
.library(name: "QuotaApp", targets: ["QuotaApp"]),
.executable(name: "CodexQuotaMonitor", targets: ["CodexQuotaMonitorApp"]),
],
targets: [
.target(name: "QuotaCore"),
.target(name: "QuotaApp", dependencies: ["QuotaCore"]),
.executableTarget(name: "CodexQuotaMonitorApp", dependencies: ["QuotaApp"]),
.testTarget(name: "QuotaCoreTests", dependencies: ["QuotaCore"]),
.testTarget(
name: "QuotaAppTests",
dependencies: ["QuotaApp", "QuotaCore"],
resources: [.copy("Fixtures")]
),
],
swiftLanguageModes: [.v6]
)