-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathPackage.swift
73 lines (71 loc) · 2.12 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
// swift-tools-version: 6.0
import PackageDescription
import CompilerPluginSupport
let package = Package(
name: "Forked",
platforms: [.macOS(.v15), .iOS(.v18), .tvOS(.v18), .watchOS(.v10), .macCatalyst(.v18)],
products: [
.library(
name: "Forked",
targets: ["Forked"]),
.library(
name: "ForkedMerge",
targets: ["ForkedMerge"]),
.library(
name: "ForkedModel",
targets: ["ForkedModel"]),
.library(
name: "ForkedCloudKit",
targets: ["ForkedCloudKit"]),
],
dependencies: [
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0"),
.package(url: "https://github.com/apple/swift-async-algorithms", from: "1.0.2"),
.package(url: "https://github.com/apple/swift-syntax.git", from: "509.0.0"),
],
targets: [
.macro(
name: "ForkedModelMacros",
dependencies: [
"Forked",
"ForkedMerge",
.product(name: "SwiftSyntaxMacros", package: "swift-syntax"),
.product(name: "SwiftCompilerPlugin", package: "swift-syntax"),
]
),
.target(
name: "Forked"),
.target(
name: "ForkedMerge",
dependencies: [
"Forked",
]
),
.target(
name: "ForkedModel",
dependencies: [
"Forked",
"ForkedMerge",
"ForkedModelMacros",
]
),
.target(
name: "ForkedCloudKit",
dependencies: [
"Forked",
.product(name: "AsyncAlgorithms", package: "swift-async-algorithms"),
]
),
.testTarget(
name: "ForkedTests",
dependencies: [
"Forked",
"ForkedModelMacros",
"ForkedMerge",
"ForkedModel",
.product(name: "SwiftSyntaxMacrosTestSupport", package: "swift-syntax"),
]
),
],
swiftLanguageModes: [.v6]
)