69 lines
1.8 KiB
Swift
69 lines
1.8 KiB
Swift
// swift-tools-version: 6.3
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Infrastructure",
|
|
platforms: [
|
|
.macOS(.v15),
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "Infrastructure",
|
|
targets: [
|
|
"Infrastructure"
|
|
]
|
|
),
|
|
],
|
|
dependencies: [
|
|
.package(
|
|
path: "../Localization"
|
|
),
|
|
.package(
|
|
url: "https://github.com/elementary-swift/elementary.git",
|
|
from: "0.6.0"
|
|
),
|
|
.package(
|
|
url: "https://github.com/hummingbird-project/hummingbird.git",
|
|
from: "2.25.0"
|
|
),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "Infrastructure",
|
|
dependencies: [
|
|
.byName(name: "Localization"),
|
|
.product(
|
|
name: "Elementary",
|
|
package: "elementary"
|
|
),
|
|
.product(
|
|
name: "Hummingbird",
|
|
package: "hummingbird"
|
|
),
|
|
],
|
|
path: "Sources"
|
|
),
|
|
.testTarget(
|
|
name: "InfrastructureTests",
|
|
dependencies: [
|
|
.byName(name: "Infrastructure"),
|
|
.product(
|
|
name: "Elementary",
|
|
package: "elementary"
|
|
),
|
|
.product(
|
|
name: "HummingbirdTesting",
|
|
package: "hummingbird"
|
|
),
|
|
],
|
|
path: "Tests",
|
|
resources: [
|
|
// Copied verbatim rather than processed: the String Catalog is read as raw JSON at
|
|
// runtime so it resolves identically on Darwin and Linux (which cannot compile it).
|
|
.copy("Catalogs/Localizable.xcstrings")
|
|
]
|
|
),
|
|
]
|
|
)
|