mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-26 18:21:00 +00:00
12d92ab1ec
If the content settings specify their own post settings and override the instance settings, a hint (and link to the content settings) is added to the instance settings (infos) since that setting might introduce confusion (As happened in #1677).
42 lines
1 KiB
Swift
42 lines
1 KiB
Swift
// swift-tools-version: 5.9
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Account",
|
|
defaultLocalization: "en",
|
|
platforms: [
|
|
.iOS(.v17),
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "Account",
|
|
targets: ["Account"]
|
|
),
|
|
],
|
|
dependencies: [
|
|
.package(name: "Network", path: "../Network"),
|
|
.package(name: "Models", path: "../Models"),
|
|
.package(name: "Status", path: "../Status"),
|
|
.package(name: "Env", path: "../Env"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "Account",
|
|
dependencies: [
|
|
.product(name: "Network", package: "Network"),
|
|
.product(name: "Models", package: "Models"),
|
|
.product(name: "Status", package: "Status"),
|
|
.product(name: "Env", package: "Env"),
|
|
],
|
|
swiftSettings: [
|
|
.enableExperimentalFeature("StrictConcurrency"),
|
|
]
|
|
),
|
|
.testTarget(
|
|
name: "AccountTests",
|
|
dependencies: ["Account"]
|
|
),
|
|
]
|
|
)
|