-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
48 lines (44 loc) · 1.73 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
// swift-tools-version: 6.0
import PackageDescription
let package = Package(
name: "SwiftNASR",
defaultLocalization: "en",
platforms: [.macOS(.v15), .iOS(.v18), .watchOS(.v11), .tvOS(.v18)],
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.12"),
.package(url: "https://github.com/Quick/Quick.git", from: "7.6.1"),
.package(url: "https://github.com/Quick/Nimble.git", from: "13.3.0"),
.package(url: "https://github.com/swiftlang/swift-docc-plugin.git", from: "1.0.0"),
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.5.0")
],
targets: [
.target(
name: "SwiftNASR",
dependencies: ["ZIPFoundation"],
resources: [.process("Resources")],
linkerSettings: [.linkedLibrary("swift_Concurrency")]),
.testTarget(
name: "SwiftNASRTests",
dependencies: ["SwiftNASR", "Quick", "Nimble"],
resources: [
.copy("Resources/MockDistribution"),
.copy("Resources/FailingMockDistribution")
],
linkerSettings: [.linkedLibrary("swift_Concurrency")]),
.executableTarget(
name: "SwiftNASR_E2E",
dependencies: [
"SwiftNASR",
.product(name: "ArgumentParser", package: "swift-argument-parser"),
],
path: "Tests/SwiftNASR_E2E",
linkerSettings: [.linkedLibrary("swift_Concurrency")]),
],
swiftLanguageModes: [.v5, .v6]
)