-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathPackage.swift
More file actions
26 lines (25 loc) · 751 Bytes
/
Package.swift
File metadata and controls
26 lines (25 loc) · 751 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
26
// swift-tools-version:5.9
import PackageDescription
let package = Package(
name: "RIBsCodeGen",
platforms: [
.macOS(.v12)
],
products: [
.executable(name: "ribscodegen", targets: ["RIBsCodeGen"])
],
dependencies: [
.package(url: "https://github.com/jpsim/SourceKitten", from: "0.37.0"),
.package(url: "https://github.com/kylef/PathKit", from: "1.0.1"),
.package(url: "https://github.com/onevcat/Rainbow", from: "3.2.0")
],
targets: [
.executableTarget(
name: "RIBsCodeGen",
dependencies: [
.product(name: "SourceKittenFramework", package: "SourceKitten"),
"PathKit",
"Rainbow"]
)
]
)