-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Package.swift
186 lines (175 loc) · 5.93 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
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
// swift-tools-version: 5.9
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
import Foundation
let swiftSettings: [SwiftSetting] = [
.enableUpcomingFeature("BareSlashRegexLiterals"),
.enableUpcomingFeature("ConciseMagicFile"),
.enableUpcomingFeature("ExistentialAny"),
.enableUpcomingFeature("ForwardTrailingClosures"),
.enableUpcomingFeature("ImplicitOpenExistentials"),
.enableUpcomingFeature("StrictConcurrency"),
.enableUpcomingFeature("DisableOutwardActorInference"),
.enableUpcomingFeature("ImportObjcForwardDeclarations")
]
var dependencies: [Package.Dependency] = [
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"),
.package(url: "https://github.com/apple/swift-algorithms", from: "1.0.0"),
.package(url: "https://github.com/apple/swift-collections", from: "1.0.0"),
.package(url: "https://github.com/apple/swift-argument-parser", .upToNextMajor(from: "1.0.0"))
]
var targets: [Target] = [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages this package depends on.
.target(
name: "SwiftUtils",
dependencies: [
.product(name: "Algorithms", package: "swift-algorithms")
],
resources: [],
swiftSettings: swiftSettings
),
.target(
name: "KanaKanjiConverterModuleWithDefaultDictionary",
dependencies: [
"KanaKanjiConverterModule"
],
exclude: [
"azooKey_dictionary_storage/README.md",
"azooKey_dictionary_storage/LICENSE",
],
resources: [
.copy("azooKey_dictionary_storage/Dictionary"),
],
swiftSettings: swiftSettings
),
.executableTarget(
name: "CliTool",
dependencies: [
"KanaKanjiConverterModuleWithDefaultDictionary",
.product(name: "ArgumentParser", package: "swift-argument-parser"),
]
),
.testTarget(
name: "SwiftUtilsTests",
dependencies: ["SwiftUtils"],
resources: [],
swiftSettings: swiftSettings
),
.testTarget(
name: "KanaKanjiConverterModuleTests",
dependencies: ["KanaKanjiConverterModule"],
resources: [
.copy("DictionaryMock")
],
swiftSettings: swiftSettings
),
.testTarget(
name: "KanaKanjiConverterModuleWithDefaultDictionaryTests",
dependencies: [
"KanaKanjiConverterModuleWithDefaultDictionary",
.product(name: "Collections", package: "swift-collections")
],
swiftSettings: swiftSettings
)
]
#if os(Linux) && !canImport(Android)
func checkObjcAvailability() -> Bool {
do {
let linkCheck = Process()
linkCheck.executableURL = URL(fileURLWithPath: "/bin/sh")
linkCheck.arguments = ["-c", "echo 'int main() { return 0; }' | clang -x c - -lobjc -o /dev/null"]
try linkCheck.run()
linkCheck.waitUntilExit()
if linkCheck.terminationStatus != 0 {
print("Cannot link with -lobjc")
return false
}
return true
} catch {
print("Error checking Objective-C availability: \(error)")
return false
}
}
if checkObjcAvailability() {
print("Objective-C runtime is available")
targets = targets.map { target in
if target.name == "CliTool" || target.name == "KanaKanjiConverterModuleWithDefaultDictionaryTests" {
let modifiedTarget = target
modifiedTarget.linkerSettings = [.linkedLibrary("objc")]
return modifiedTarget
}
return target
}
}
#endif
#if os(Windows)
targets.append(contentsOf: [
.systemLibrary(
name: "llama.cpp"
),
.target(
name: "KanaKanjiConverterModule",
dependencies: [
"SwiftUtils",
"llama.cpp",
.product(name: "Collections", package: "swift-collections")
],
swiftSettings: swiftSettings
)
])
#else
if let envValue = ProcessInfo.processInfo.environment["LLAMA_MOCK"], envValue == "1" {
targets.append(contentsOf: [
.target(name: "llama-mock"),
.target(
name: "KanaKanjiConverterModule",
dependencies: [
"SwiftUtils",
"llama-mock",
.product(name: "Collections", package: "swift-collections")
],
swiftSettings: swiftSettings
)
])
} else {
dependencies.append(
.package(url: "https://github.com/ensan-hcl/llama.cpp", branch: "6b862f4")
)
targets.append(contentsOf: [
.target(
name: "KanaKanjiConverterModule",
dependencies: [
"SwiftUtils",
.product(name: "llama", package: "llama.cpp"),
.product(name: "Collections", package: "swift-collections")
],
swiftSettings: swiftSettings
)
])
}
#endif
let package = Package(
name: "AzooKeyKanakanjiConverter",
platforms: [.iOS(.v14), .macOS(.v12)],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
name: "SwiftUtils",
targets: ["SwiftUtils"]
),
/// デフォルト辞書データを含むバージョンの辞書モジュール
.library(
name: "KanaKanjiConverterModuleWithDefaultDictionary",
targets: ["KanaKanjiConverterModuleWithDefaultDictionary"]
),
/// 辞書データを含まないバージョンの辞書モジュール
.library(
name: "KanaKanjiConverterModule",
targets: ["KanaKanjiConverterModule"]
),
],
dependencies: dependencies,
targets: targets
)