IceCubesApp/Packages/Status/Package.swift

38 lines
1,003 B
Swift
Raw Normal View History

2022-12-18 19:30:19 +00:00
// swift-tools-version: 5.7
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "Status",
defaultLocalization: "en",
2022-12-18 19:30:19 +00:00
platforms: [
.iOS(.v16),
],
products: [
.library(
name: "Status",
2023-01-17 10:36:01 +00:00
targets: ["Status"]
),
2022-12-18 19:30:19 +00:00
],
dependencies: [
2023-01-16 12:52:56 +00:00
.package(name: "AppAccount", path: "../AppAccount"),
2022-12-18 19:30:19 +00:00
.package(name: "Models", path: "../Models"),
2022-12-19 16:19:33 +00:00
.package(name: "Network", path: "../Network"),
2022-12-22 09:53:36 +00:00
.package(name: "Env", path: "../Env"),
2022-12-18 19:30:19 +00:00
.package(name: "DesignSystem", path: "../DesignSystem"),
],
targets: [
.target(
name: "Status",
dependencies: [
2023-01-16 12:52:56 +00:00
.product(name: "AppAccount", package: "AppAccount"),
2022-12-18 19:30:19 +00:00
.product(name: "Models", package: "Models"),
2022-12-19 16:19:33 +00:00
.product(name: "Network", package: "Network"),
2022-12-22 09:53:36 +00:00
.product(name: "Env", package: "Env"),
2022-12-18 19:30:19 +00:00
.product(name: "DesignSystem", package: "DesignSystem"),
2023-01-17 10:36:01 +00:00
]
),
2022-12-18 19:30:19 +00:00
]
)