This repository has been archived by the owner on May 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Package.swift
122 lines (120 loc) · 3.45 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "XCBBuildServiceProxy",
platforms: [.macOS(.v11)],
products: [
.library(name: "XCBProtocol", targets: ["XCBProtocol"]),
.library(name: "XCBProtocol_11_3", targets: ["XCBProtocol_11_3"]),
.library(name: "XCBProtocol_11_4", targets: ["XCBProtocol_11_4"]),
.library(name: "XCBProtocol_12_0", targets: ["XCBProtocol_12_0"]),
.library(name: "XCBProtocol_12_5", targets: ["XCBProtocol_12_5"]),
.library(name: "XCBProtocol_13_0", targets: ["XCBProtocol_13_0"]),
.library(name: "XCBProtocol_13_3", targets: ["XCBProtocol_13_3"]),
.library(name: "XCBBuildServiceProxy", targets: ["XCBBuildServiceProxy"]),
],
dependencies: [
// Make sure to update the versions used in the `repositories.bzl` file if you change them here
.package(url: "https://github.com/apple/swift-log", .exact("1.4.2")),
.package(url: "https://github.com/apple/swift-nio", .exact("2.38.0")),
],
targets: [
.target(
name: "MessagePack",
exclude: [
"BUILD.bazel",
"LICENSE",
"README.md"
]
),
.testTarget(
name: "MessagePackTests",
dependencies: ["MessagePack"],
exclude: [
"BUILD.bazel"
]
),
.target(
name: "XCBProtocol",
dependencies: [
.product(name: "Logging", package: "swift-log"),
"MessagePack",
.product(name: "NIO", package: "swift-nio"),
],
exclude: [
"BUILD.bazel"
]
),
.target(
name: "XCBProtocol_11_3",
dependencies: [
"MessagePack",
"XCBProtocol",
],
exclude: [
"BUILD.bazel"
]
),
.target(
name: "XCBProtocol_11_4",
dependencies: [
"MessagePack",
"XCBProtocol",
],
exclude: [
"BUILD.bazel"
]
),
.target(
name: "XCBProtocol_12_0",
dependencies: [
"MessagePack",
"XCBProtocol",
],
exclude: [
"BUILD.bazel"
]
),
.target(
name: "XCBProtocol_12_5",
dependencies: [
"MessagePack",
"XCBProtocol",
],
exclude: [
"BUILD.bazel"
]
),
.target(
name: "XCBProtocol_13_0",
dependencies: [
"MessagePack",
"XCBProtocol",
],
exclude: [
"BUILD.bazel"
]
),
.target(
name: "XCBProtocol_13_3",
dependencies: [
"MessagePack",
"XCBProtocol",
],
exclude: [
"BUILD.bazel"
]
),
.target(
name: "XCBBuildServiceProxy",
dependencies: [
.product(name: "Logging", package: "swift-log"),
.product(name: "NIO", package: "swift-nio"),
"XCBProtocol",
],
exclude: [
"BUILD.bazel"
]
),
]
)