-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPackage.swift
73 lines (72 loc) · 2.3 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: 5.9
import CompilerPluginSupport
import PackageDescription
let package = Package(
name: "HashableMacro",
platforms: [
.macOS(.v10_15),
.iOS(.v13),
.tvOS(.v13),
.watchOS(.v6),
.macCatalyst(.v13),
.visionOS(.v1),
],
products: [
.library(
name: "HashableMacro",
targets: ["HashableMacro"]
),
],
dependencies: [
.package(url: "https://github.com/apple/swift-syntax", from: "509.1.0"),
// We only really need swift-macro-testing 0.3.0 or newer but 0.4.0 is required to compile due
// to breaking changes in swift-snapshot-testing.
.package(url: "https://github.com/pointfreeco/swift-macro-testing.git", from: "0.4.0"),
],
targets: [
.target(
name: "HashableMacro",
dependencies: [
.targetItem(
name: "HashableMacroFoundation",
condition: .when(
platforms: [.macOS, .iOS, .tvOS, .watchOS, .macCatalyst, .visionOS]
)
),
"HashableMacroMacros",
],
swiftSettings: [.enableExperimentalFeature("StrictConcurrency")]
),
.target(
name: "HashableMacroFoundation",
swiftSettings: [.enableExperimentalFeature("StrictConcurrency")]
),
.macro(
name: "HashableMacroMacros",
dependencies: [
.targetItem(
name: "HashableMacroFoundation",
condition: .when(
platforms: [.macOS, .iOS, .tvOS, .watchOS, .macCatalyst]
)
),
.product(name: "SwiftDiagnostics", package: "swift-syntax"),
.product(name: "SwiftSyntax", package: "swift-syntax"),
.product(name: "SwiftSyntaxMacros", package: "swift-syntax"),
.product(name: "SwiftCompilerPlugin", package: "swift-syntax"),
],
swiftSettings: [.enableExperimentalFeature("StrictConcurrency")]
),
.testTarget(
name: "HashableMacroTests",
dependencies: [
"HashableMacro",
"HashableMacroMacros",
.product(name: "MacroTesting", package: "swift-macro-testing"),
.product(name: "SwiftSyntaxMacros", package: "swift-syntax"),
.product(name: "SwiftSyntaxMacrosTestSupport", package: "swift-syntax"),
],
swiftSettings: [.enableExperimentalFeature("StrictConcurrency")]
),
]
)