-
Notifications
You must be signed in to change notification settings - Fork 5
/
Package.swift
92 lines (88 loc) · 2.15 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
// swift-tools-version: 5.9.0
// The swift-tools-version declares the minimum version of Swift required to build this package.
import CompilerPluginSupport
import PackageDescription
let commonPlugins: [Target.PluginUsage] = [
.plugin(name: "SwiftLint")
]
let package = Package(
name: "HappyCodable",
platforms: [
.iOS("8.0"),
.macOS("10.15")
],
products: [
.library(
name: "HappyCodable",
targets: [
"HappyCodable",
"HappyCodableShared"
]
),
],
dependencies: [
.package(
url: "https://github.com/apple/swift-syntax.git",
from: "509.0.0"
),
],
targets: [
.target(
name: "HappyCodableShared",
plugins: commonPlugins
),
.macro(
name: "HappyCodablePlugin",
dependencies: [
"HappyCodableShared",
.product(name: "SwiftSyntax", package: "swift-syntax"),
.product(name: "SwiftSyntaxMacros", package: "swift-syntax"),
.product(name: "SwiftOperators", package: "swift-syntax"),
.product(name: "SwiftParser", package: "swift-syntax"),
.product(name: "SwiftParserDiagnostics", package: "swift-syntax"),
.product(name: "SwiftCompilerPlugin", package: "swift-syntax"),
],
swiftSettings: [
.enableUpcomingFeature("BareSlashRegexLiterals")
],
plugins: commonPlugins
),
.target(
name: "HappyCodable",
dependencies: [
"HappyCodableShared",
"HappyCodablePlugin",
],
plugins: commonPlugins
),
.testTarget(
name: "HappyCodableTests",
dependencies: [
"HappyCodable",
"HappyCodableShared",
],
plugins: commonPlugins
),
.testTarget(
name: "HappyCodablePluginTests",
dependencies: [
"HappyCodablePlugin",
"HappyCodableShared",
.product(name: "SwiftSyntaxMacroExpansion", package: "swift-syntax"),
],
plugins: commonPlugins
),
// MARK: - Build Tools
.binaryTarget(
name: "SwiftLintBinary",
url: "https://github.com/realm/SwiftLint/releases/download/0.52.2/SwiftLintBinary-macos.artifactbundle.zip",
checksum: "89651e1c87fb62faf076ef785a5b1af7f43570b2b74c6773526e0d5114e0578e"
),
.plugin(
name: "SwiftLint",
capability: .buildTool(),
dependencies: ["SwiftLintBinary"],
path: "Plugins/Lint"
),
]
)