-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
106 lines (98 loc) · 3.45 KB
/
Package.swift
File metadata and controls
106 lines (98 loc) · 3.45 KB
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
// swift-tools-version: 6.0
import PackageDescription
import CompilerPluginSupport
let package = Package(
name: "SwiftScripting",
platforms: [
.macOS(.v15),
.iOS(.v18),
],
products: [
.library(
name: "SwiftScripting",
targets: ["SwiftScripting"]
),
.library(
name: "SwiftScriptingAppleEvents",
targets: ["SwiftScriptingAppleEvents"]
),
.library(
name: "SwiftScriptingIntents",
targets: ["SwiftScriptingIntents"]
),
],
dependencies: [
.package(url: "https://github.com/swiftlang/swift-syntax.git", from: "600.0.0"),
],
targets: [
// MARK: - Core Framework
.target(
name: "SwiftScripting",
dependencies: ["SwiftScriptingMacrosClient"],
swiftSettings: [.swiftLanguageMode(.v6)]
),
// MARK: - Macro Implementation (compiler plugin)
.macro(
name: "SwiftScriptingMacros",
dependencies: [
.product(name: "SwiftSyntax", package: "swift-syntax"),
.product(name: "SwiftSyntaxMacros", package: "swift-syntax"),
.product(name: "SwiftCompilerPlugin", package: "swift-syntax"),
],
swiftSettings: [.swiftLanguageMode(.v6)]
),
// MARK: - Macro Declarations (re-exported by SwiftScripting)
.target(
name: "SwiftScriptingMacrosClient",
dependencies: ["SwiftScriptingMacros"],
swiftSettings: [.swiftLanguageMode(.v6)]
),
// MARK: - Apple Event Interface (macOS only)
.target(
name: "SwiftScriptingAppleEvents",
dependencies: ["SwiftScripting"],
swiftSettings: [.swiftLanguageMode(.v6)]
),
// MARK: - App Intents Bridge
.target(
name: "SwiftScriptingIntents",
dependencies: ["SwiftScripting"],
swiftSettings: [.swiftLanguageMode(.v6)]
),
// MARK: - Example Apps
.executableTarget(
name: "ScriptableTodos",
dependencies: ["SwiftScripting", "SwiftScriptingAppleEvents", "SwiftScriptingIntents"],
path: "Examples/ScriptableTodos",
exclude: ["project.yml", "ObjC", "ScriptableTodos.sdef", "Info.plist", "TestScriptableTodos.applescript"],
swiftSettings: [.swiftLanguageMode(.v6)]
),
.executableTarget(
name: "ScriptableTextEditor",
dependencies: ["SwiftScripting", "SwiftScriptingAppleEvents"],
path: "Examples/ScriptableTextEditor",
exclude: ["project.yml"],
swiftSettings: [.swiftLanguageMode(.v6)]
),
// MARK: - Tests
.testTarget(
name: "SwiftScriptingTests",
dependencies: [
"SwiftScripting",
.product(name: "SwiftSyntaxMacrosTestSupport", package: "swift-syntax"),
"SwiftScriptingMacros",
],
swiftSettings: [.swiftLanguageMode(.v6)]
),
.testTarget(
name: "SwiftScriptingAppleEventsTests",
dependencies: ["SwiftScriptingAppleEvents"],
swiftSettings: [.swiftLanguageMode(.v6)]
),
.testTarget(
name: "SwiftScriptingIntentsTests",
dependencies: ["SwiftScriptingIntents"],
swiftSettings: [.swiftLanguageMode(.v6)]
),
]
)