Reviewed-on: rock-n-code/loud-amsterdam#24 Co-authored-by: Javier Cicchelli <javier@rock-n-code.com> Co-committed-by: Javier Cicchelli <javier@rock-n-code.com>
48 lines
1.1 KiB
Swift
48 lines
1.1 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(
|
|
url: "https://github.com/hummingbird-project/hummingbird.git",
|
|
from: "2.25.0"
|
|
),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "Infrastructure",
|
|
dependencies: [
|
|
.product(
|
|
name: "Hummingbird",
|
|
package: "hummingbird"
|
|
),
|
|
],
|
|
path: "Sources"
|
|
),
|
|
.testTarget(
|
|
name: "InfrastructureTests",
|
|
dependencies: [
|
|
.byName(name: "Infrastructure"),
|
|
.product(
|
|
name: "HummingbirdTesting",
|
|
package: "hummingbird"
|
|
),
|
|
],
|
|
path: "Tests"
|
|
),
|
|
]
|
|
)
|