-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
25 lines (23 loc) · 866 Bytes
/
Copy pathPackage.swift
File metadata and controls
25 lines (23 loc) · 866 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
25
// swift-tools-version: 6.2
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "TomoCodes",
platforms: [.macOS(.v14)],
dependencies: [
.package(url: "https://github.com/twostraws/Ignite.git", from: "0.6.0"),
.package(url: "https://github.com/SwiftGen/SwiftGenPlugin", from: "6.6.0"),
],
targets: [
.executableTarget(
name: "TomoCodes",
dependencies: ["Ignite"],
path: "Sources",
resources: [.process("Resources/Colors.xcassets")],
plugins: [
// Disabled due to issue with Xcode 16.3; works just fine with Xcode 16.2 (via swift build)
// .plugin(name: "SwiftGenPlugin", package: "SwiftGenPlugin")
]
),
]
)