IceCubesApp/Packages/Explore/Package.swift

39 lines
1 KiB
Swift
Raw Normal View History

// 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: "Explore",
platforms: [
.iOS(.v16),
],
products: [
.library(
name: "Explore",
2023-01-17 10:36:01 +00:00
targets: ["Explore"]
),
],
dependencies: [
2022-12-23 15:21:31 +00:00
.package(name: "Account", path: "../Account"),
.package(name: "Network", path: "../Network"),
.package(name: "Models", path: "../Models"),
.package(name: "Env", path: "../Env"),
.package(name: "Status", path: "../Status"),
2022-12-25 06:43:02 +00:00
.package(name: "DesignSystem", path: "../DesignSystem"),
],
targets: [
.target(
name: "Explore",
dependencies: [
2022-12-23 15:21:31 +00:00
.product(name: "Account", package: "Account"),
.product(name: "Network", package: "Network"),
.product(name: "Models", package: "Models"),
.product(name: "Env", package: "Env"),
.product(name: "Status", package: "Status"),
2023-01-17 10:36:01 +00:00
.product(name: "DesignSystem", package: "DesignSystem"),
]
),
]
)