IceCubesApp/Packages/Account/Package.swift

44 lines
1 KiB
Swift
Raw Normal View History

// swift-tools-version: 5.9
2022-11-29 10:46:02 +00:00
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "Account",
defaultLocalization: "en",
2022-11-29 10:46:02 +00:00
platforms: [
.iOS(.v17),
.visionOS(.v1),
2022-11-29 10:46:02 +00:00
],
products: [
.library(
name: "Account",
2023-01-17 10:36:01 +00:00
targets: ["Account"]
),
2022-11-29 10:46:02 +00:00
],
dependencies: [
.package(name: "Network", path: "../Network"),
.package(name: "Models", path: "../Models"),
2022-12-18 19:30:19 +00:00
.package(name: "Status", path: "../Status"),
.package(name: "Env", path: "../Env"),
2022-11-29 10:46:02 +00:00
],
targets: [
.target(
name: "Account",
dependencies: [
.product(name: "Network", package: "Network"),
2022-12-18 19:30:19 +00:00
.product(name: "Models", package: "Models"),
.product(name: "Status", package: "Status"),
.product(name: "Env", package: "Env"),
],
swiftSettings: [
2023-09-16 12:15:03 +00:00
.enableExperimentalFeature("StrictConcurrency"),
2023-01-17 10:36:01 +00:00
]
),
2022-11-29 10:46:02 +00:00
.testTarget(
name: "AccountTests",
2023-01-17 10:36:01 +00:00
dependencies: ["Account"]
),
2022-11-29 10:46:02 +00:00
]
)