-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
53 lines (52 loc) · 1.84 KB
/
Copy pathPackage.swift
File metadata and controls
53 lines (52 loc) · 1.84 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
// swift-tools-version:6.2
// Generated by scripts/lib_publish/publish-libraries.py. Do not edit by hand.
import PackageDescription
let package = Package(
name: "moot-semantics",
platforms: [
.macOS(.v26),
.iOS(.v26),
],
products: [
.library(name: "AriaLexiconLib", targets: ["AriaLexiconLib"]),
.library(name: "EideticLib", targets: ["EideticLib"]),
.library(name: "LatticeLib", targets: ["LatticeLib"])
],
dependencies: [
.package(url: "https://github.com/codedaptive/moot-core.git", exact: "1.0.32")
],
targets: [
.target(
name: "AriaLexiconLib",
path: "packages/libs/AriaLexiconLib/Sources/AriaLexiconLib"
),
.testTarget(
name: "AriaLexiconLibTests",
dependencies: ["AriaLexiconLib"],
path: "packages/libs/AriaLexiconLib/Tests/AriaLexiconLibTests"
),
.target(
name: "EideticLib",
dependencies: ["LatticeLib"],
path: "packages/libs/EideticLib/Sources/EideticLib",
resources: [.process("Resources")]
),
.testTarget(
name: "EideticLibTests",
dependencies: ["EideticLib", "LatticeLib"],
path: "packages/libs/EideticLib/Tests/EideticLibTests",
resources: [.copy("../SharedVectors")]
),
.target(
name: "LatticeLib",
dependencies: [.product(name: "SubstrateML", package: "moot-core"), .product(name: "SubstrateKernel", package: "moot-core")],
path: "packages/libs/LatticeLib/Sources/LatticeLib",
resources: [.process("Resources")]
),
.testTarget(
name: "LatticeLibTests",
dependencies: ["LatticeLib"],
path: "packages/libs/LatticeLib/Tests/LatticeLibTests"
)
]
)