IceCubesApp/Packages/AppAccount/Package.swift

40 lines
983 B
Swift
Raw Permalink Normal View History

// swift-tools-version: 6.0
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "AppAccount",
defaultLocalization: "en",
platforms: [
.iOS(.v17),
.visionOS(.v1),
],
products: [
.library(
name: "AppAccount",
2023-01-17 10:36:01 +00:00
targets: ["AppAccount"]
2024-10-28 09:57:48 +00:00
)
],
dependencies: [
.package(name: "Network", path: "../Network"),
.package(name: "Models", path: "../Models"),
.package(name: "Env", path: "../Env"),
.package(name: "DesignSystem", path: "../DesignSystem"),
],
targets: [
.target(
name: "AppAccount",
dependencies: [
.product(name: "Network", package: "Network"),
.product(name: "Models", package: "Models"),
.product(name: "Env", package: "Env"),
.product(name: "DesignSystem", package: "DesignSystem"),
],
swiftSettings: [
2024-10-28 09:57:48 +00:00
.swiftLanguageMode(.v6)
2023-01-17 10:36:01 +00:00
]
2024-10-28 09:57:48 +00:00
)
]
)