Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPackage.swift
More file actions
Latest commit
109 lines (95 loc) · 2.89 KB
/
Copy pathPackage.swift
File metadata and controls
109 lines (95 loc) · 2.89 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
// swift-tools-version:5.9
import PackageDescription
letpackage=Package(
name:"NJS",
platforms:[
.iOS(.v16),
.macOS(.v13),
],
products:[
.library(
name:"NJS",
targets:["NJS"]),
],
dependencies:[
.package(name:"JavaScript"),
.package(name:"Test")
],
targets:[
.target(
name:"CNJS",
dependencies:[]),
.target(
name:"NJS",
dependencies:[
.target(name:"CNJS"),
.product(name:"JavaScript",package:"javascript"),
],
swiftSettings: swift6)
]
)
letswift6:[SwiftSetting]=[
.enableUpcomingFeature("ConciseMagicFile"),
.enableUpcomingFeature("ForwardTrailingClosures"),
.enableUpcomingFeature("ExistentialAny"),
.enableUpcomingFeature("StrictConcurrency"),
.enableUpcomingFeature("ImplicitOpenExistentials"),
.enableUpcomingFeature("BareSlashRegexLiterals"),
]
// MARK: - tests
testTarget("NJS"){ test in
test("JavaScript")
test("JSValue")
}
func testTarget(_ target:String, task:((String)->Void)->Void){
task{ test inaddTest(target: target, name: test)}
}
func addTest(target:String, name:String){
package.targets.append(
.executableTarget(
name:"Tests/\(target)/\(name)",
dependencies:[
.target(name:"NJS"),
.product(name:"Test",package:"test"),
],
path:"Tests/\(target)/\(name)",
swiftSettings: swift6))
}
// MARK: - custom package source
#if canImport(ObjectiveC)
import Darwin.C
#else
import Glibc
#endif
extensionPackage.Dependency{
enumSource:String{
case local, remote, github
staticvar`default`:Self{.github }
varbaseUrl:String{
switchself{
case.local:return"../../swiftstack/"
case.remote:return"https://swiftstack.io/"
case.github:return"https://github.com/swiftstack/"
}
}
func url(for name:String)->String{
returnself==.local
? baseUrl + name.lowercased()
: baseUrl + name.lowercased()+".git"
}
}
staticfuncpackage(name:String)->Package.Dependency{
guardlet pointer =getenv("SWIFTSTACK")else{
return.package(name: name, source:.default)
}
guardlet source =Source(rawValue:String(cString: pointer))else{
fatalError("Invalid source. Use local, remote or github")
}
return.package(name: name, source: source)
}
staticfuncpackage(name:String, source:Source)->Package.Dependency{
return source ==.local
?.package(name: name, path: source.url(for: name))
:.package(url: source.url(for: name), branch:"dev")
}
}