-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
204 lines (194 loc) · 6.92 KB
/
Copy pathPackage.swift
File metadata and controls
204 lines (194 loc) · 6.92 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
// swift-tools-version:6.2
import PackageDescription
import CompilerPluginSupport
let package = Package(
name: "Lava",
products: [
// Core library containing Lava DSL implementation
.executable(
name: "Lava",
targets: ["Lava"]
),
// Demo application showcasing Lava DSL features
.executable(
name: "LavaDemo",
targets: ["LavaDemo"]
),
// OuroLang Core libraries
.library(
name: "OuroLangCore",
targets: ["OuroLangCore"]
),
// OuroLang Compiler
.executable(
name: "OuroCompiler",
targets: ["OuroCompiler"]
),
// OuroLang Transpiler
.executable(
name: "OuroTranspiler",
targets: ["OuroTranspiler"]
),
// Language Server Protocol implementation for IDE integration
.executable(
name: "OuroLSP",
targets: ["OuroLangLSP"]
),
// Combined LSP server for both .ouro (and future .lava) files
.executable(
name: "CombinedLSP",
targets: ["CombinedLSP"]
),
// MLIRSwift library wrapping the MLIR C API
.library(
name: "MLIRSwift",
targets: ["MLIRSwift"]
),
],
dependencies: [
// SwiftSyntax for macros and modern Swift features
.package(url: "https://github.com/apple/swift-syntax.git", branch: "main"),
// SwiftLog for unified logging API
.package(url: "https://github.com/apple/swift-log.git", branch: "main"),
// DocC plugin for documentation generation
.package(url: "https://github.com/apple/swift-docc-plugin.git", branch: "main"),
// Collections for advanced data structures
.package(url: "https://github.com/apple/swift-collections.git", branch: "main"),
// Swift Concurrency for modern async/await support
.package(url: "https://github.com/apple/swift-async-algorithms.git", branch: "main"),
// Swift System for modern system interfaces
.package(url: "https://github.com/apple/swift-system.git", branch: "main"),
],
targets: [
.macro(
name: "LavaMacros",
dependencies: [
.product(name: "SwiftSyntaxMacros", package: "swift-syntax"),
.product(name: "SwiftCompilerPlugin", package: "swift-syntax"),
],
swiftSettings: [
.enableUpcomingFeature("BareSlashRegexLiterals"),
.enableUpcomingFeature("ConciseMagicFile"),
.enableUpcomingFeature("ExistentialAny"),
.enableUpcomingFeature("ForwardTrailingClosures"),
.enableUpcomingFeature("ImplicitOpenExistentials"),
.enableUpcomingFeature("StrictConcurrency"),
]
),
.executableTarget(
name: "Lava",
dependencies: [
"LavaMacros",
.product(name: "Logging", package: "swift-log"),
.product(name: "Collections", package: "swift-collections"),
.product(name: "AsyncAlgorithms", package: "swift-async-algorithms"),
.product(name: "SystemPackage", package: "swift-system"),
],
swiftSettings: [
.enableUpcomingFeature("BareSlashRegexLiterals"),
.enableUpcomingFeature("ConciseMagicFile"),
.enableUpcomingFeature("ExistentialAny"),
.enableUpcomingFeature("ForwardTrailingClosures"),
.enableUpcomingFeature("ImplicitOpenExistentials"),
.enableUpcomingFeature("StrictConcurrency"),
],
plugins: [
.plugin(name: "SwiftDocCStub")
]
),
// Demo application for Lava DSL showcase
.executableTarget(
name: "LavaDemo",
dependencies: ["Lava"]
),
// OuroLang Core libraries (lexer, parser, AST, etc.)
.target(
name: "OuroLangCore",
dependencies: [
.product(name: "Logging", package: "swift-log"),
.product(name: "Collections", package: "swift-collections"),
],
plugins: [
.plugin(name: "SwiftDocCStub")
]
),
// OuroLang Compiler executable
.executableTarget(
name: "OuroCompiler",
dependencies: ["OuroLangCore"]
),
// OuroLang Transpiler executable
.executableTarget(
name: "OuroTranspiler",
dependencies: ["OuroLangCore"]
),
// Language Server Protocol implementation
.executableTarget(
name: "OuroLangLSP",
dependencies: ["OuroLangCore"]
),
// Language Server Protocol implementation for Lava DSL
.executableTarget(
name: "LavaLSP",
dependencies: ["Lava"]
),
// Combined LSP target routing .ouro and .lava documents
.executableTarget(
name: "CombinedLSP",
dependencies: ["OuroLangLSP", "LavaLSP"]
),
// MLIR C API system library target and Swift wrapper
.systemLibrary(
name: "CMLIR",
path: "Sources/CMLIR"
),
.target(
name: "MLIRSwift",
dependencies: ["CMLIR"],
path: "Sources/MLIRSwift"
),
.executableTarget(
name: "MyMLIRApp",
dependencies: ["MLIRSwift"],
path: "Sources/MyMLIRApp"
),
// Test targets with improved organization
.testTarget(
name: "LavaExtensionsTests",
dependencies: ["Lava"],
swiftSettings: [
.enableUpcomingFeature("BareSlashRegexLiterals"),
.enableUpcomingFeature("ConciseMagicFile"),
.enableUpcomingFeature("ExistentialAny"),
.enableUpcomingFeature("ForwardTrailingClosures"),
.enableUpcomingFeature("ImplicitOpenExistentials"),
.enableUpcomingFeature("StrictConcurrency"),
]
),
.testTarget(
name: "LavaCommandMVCTests",
dependencies: ["Lava"]
),
.testTarget(
name: "OuroLangCoreTests",
dependencies: ["OuroLangCore"]
),
// Unit tests for LavaLanguageServer
.testTarget(
name: "LavaLSPTests",
dependencies: ["LavaLSP"]
),
// Local stub plugin for documentation generation
.plugin(
name: "SwiftDocCStub",
capability: .command(
intent: .documentationGeneration()
)
),
// MLIR-based compiler for OuroLang
.executableTarget(
name: "OuroLangMLIR",
dependencies: ["OuroLangCore", "MLIRSwift"],
path: "Sources/OuroLangMLIR"
),
])