-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
62 lines (58 loc) · 1.98 KB
/
Copy pathPackage.swift
File metadata and controls
62 lines (58 loc) · 1.98 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
// swift-tools-version: 6.3
import PackageDescription
let upcomingFeatures: [SwiftSetting] = [
.enableUpcomingFeature("NonisolatedNonsendingByDefault"),
.enableUpcomingFeature("InferIsolatedConformances"),
.enableUpcomingFeature("ImmutableWeakCaptures"),
.enableUpcomingFeature("MemberImportVisibility"),
.enableUpcomingFeature("ExistentialAny"),
.enableUpcomingFeature("InternalImportsByDefault")
]
let package = Package(
name: "SwiftNASR",
defaultLocalization: "en",
platforms: [.macOS(.v15), .iOS(.v18), .tvOS(.v18), .watchOS(.v11), .visionOS(.v2)],
products: [
.library(
name: "SwiftNASR",
targets: ["SwiftNASR"]
),
.executable(name: "SwiftNASR_E2E", targets: ["SwiftNASR_E2E"])
],
dependencies: [
.package(url: "https://github.com/weichsel/ZIPFoundation.git", from: "0.9.20"),
.package(url: "https://github.com/swiftlang/swift-docc-plugin.git", from: "1.5.0"),
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.8.2"),
.package(url: "https://github.com/RISCfuture/StreamingCSV.git", from: "2.1.0")
],
targets: [
.target(
name: "SwiftNASR",
dependencies: ["ZIPFoundation", "StreamingCSV"],
resources: [.process("Resources")],
swiftSettings: upcomingFeatures,
linkerSettings: [.linkedLibrary("swift_Concurrency")]
),
.testTarget(
name: "SwiftNASRTests",
dependencies: ["SwiftNASR"],
resources: [
.copy("Resources/MockDistribution"),
.copy("Resources/FailingMockDistribution")
],
swiftSettings: upcomingFeatures,
linkerSettings: [.linkedLibrary("swift_Concurrency")]
),
.executableTarget(
name: "SwiftNASR_E2E",
dependencies: [
"SwiftNASR",
.product(name: "ArgumentParser", package: "swift-argument-parser")
],
path: "Tests/SwiftNASR_E2E",
swiftSettings: upcomingFeatures,
linkerSettings: [.linkedLibrary("swift_Concurrency")]
)
],
swiftLanguageModes: [.v5, .v6]
)