-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
53 lines (50 loc) · 1.7 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// swift-tools-version: 5.6
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "timeline",
platforms: [
.macOS(.v12)
],
products: [
.executable(name: "Timeline-macOS", targets: ["TimelineCocoa"]),
.executable(name: "Timeline-linux", targets: ["TimelineLinux"]),
],
dependencies: [
.package(url: "https://github.com/stephencelis/SQLite.swift.git", "0.13.3"..<"0.14.0"),
.package(url: "https://github.com/aestesis/X11.git", branch: "master"),
],
targets: [
.target(
name: "TimelineCore",
dependencies: [],
path: "TimelineCore/"),
.target(
name: "SQLiteStorage",
dependencies: [
"TimelineCore",
.product(name: "SQLite", package: "SQLite.swift"),
],
path: "SQLiteStorage/"),
.target(
name: "testing_utils",
dependencies: ["TimelineCore"],
path: "testing-utils/"),
.testTarget(
name: "TimelineCoreTests",
dependencies: ["TimelineCore", "testing_utils"],
path: "TimelineCoreTests/"),
.executableTarget(
name: "TimelineCocoa",
dependencies: ["TimelineCore", "SQLiteStorage"],
path: "macOS/",
resources: [
.copy("macOS/macOS.entitlements"),
.copy("macOS/timeline--macOS--Info.plist"),
]),
.executableTarget(
name: "TimelineLinux",
dependencies: ["TimelineCore", "SQLiteStorage", "X11"],
path: "linux/"),
]
)