mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-06 01:09:30 +00:00
980b9a5dd6
* Implement localization * Fix some localization keys * Adapt to recent changes
35 lines
901 B
Swift
35 lines
901 B
Swift
// 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: "AppAccount",
|
|
defaultLocalization: "en",
|
|
platforms: [
|
|
.iOS(.v16),
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "AppAccount",
|
|
targets: ["AppAccount"]
|
|
),
|
|
],
|
|
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"),
|
|
]
|
|
),
|
|
]
|
|
)
|