-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathPackage.swift
More file actions
27 lines (25 loc) · 933 Bytes
/
Package.swift
File metadata and controls
27 lines (25 loc) · 933 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
27
// swift-tools-version: 6.0
import PackageDescription
let package = Package(
name: "trailer-cli",
platforms: [
.macOS(.v11)
],
products: [
.executable(name: "trailer", targets: ["trailer"])
],
dependencies: [
.package(url: "https://github.com/ptsochantaris/trailer-ql", branch: "main"),
.package(url: "https://github.com/ptsochantaris/trailer-json", branch: "main"),
.package(url: "https://github.com/ptsochantaris/semalot", branch: "main"),
.package(url: "https://github.com/ptsochantaris/lista", branch: "main")
],
targets: [
.executableTarget(name: "trailer", dependencies: [
.product(name: "TrailerQL", package: "trailer-ql"),
.product(name: "TrailerJson", package: "trailer-json"),
.product(name: "Semalot", package: "semalot"),
.product(name: "Lista", package: "lista")
])
]
)