-
Notifications
You must be signed in to change notification settings - Fork 1
/
Package.swift
38 lines (36 loc) · 1.1 KB
/
Package.swift
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
33
34
35
36
37
38
// swift-tools-version:6.0
import PackageDescription
let package = Package(
name: "FlyingFoxCLI",
platforms: [
.macOS(.v10_15)
],
products: [
.executable(name: "flyingfox", targets: ["FlyingFoxCLI"])
],
dependencies: [
.package(url: "https://github.com/swhitty/FlyingFox.git", .upToNextMajor(from: "0.19.0"))
],
targets: [
.executableTarget(
name: "FlyingFoxCLI",
dependencies: [
.product(name: "FlyingFox", package: "FlyingFox")
],
path: "Sources",
resources: [
.copy("HTML.bundle")
],
swiftSettings: [
.swiftLanguageMode(.v6)
],
linkerSettings: [
.linkedLibrary("crypto", .when(platforms: [.linux])),
.linkedLibrary("icudata", .when(platforms: [.linux])),
.linkedLibrary("icuuc", .when(platforms: [.linux])),
.linkedLibrary("ssl", .when(platforms: [.linux])),
.linkedLibrary("z", .when(platforms: [.linux]))
]
)
]
)