IceCubesApp/Packages/Notifications/Package.swift

42 lines
1.1 KiB
Swift
Raw Normal View History

// swift-tools-version: 5.9
2022-12-19 11:28:55 +00:00
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "Notifications",
defaultLocalization: "en",
2022-12-19 11:28:55 +00:00
platforms: [
.iOS(.v17),
.visionOS(.v1),
2022-12-19 11:28:55 +00:00
],
products: [
.library(
name: "Notifications",
2023-01-17 10:36:01 +00:00
targets: ["Notifications"]
),
2022-12-19 11:28:55 +00:00
],
dependencies: [
.package(name: "Network", path: "../Network"),
.package(name: "Models", path: "../Models"),
2022-12-22 09:53:36 +00:00
.package(name: "Env", path: "../Env"),
2024-01-06 18:27:26 +00:00
.package(name: "StatusKit", path: "../StatusKit"),
2022-12-25 06:43:02 +00:00
.package(name: "DesignSystem", path: "../DesignSystem"),
2022-12-19 11:28:55 +00:00
],
targets: [
.target(
name: "Notifications",
dependencies: [
.product(name: "Network", package: "Network"),
.product(name: "Models", package: "Models"),
2022-12-22 09:53:36 +00:00
.product(name: "Env", package: "Env"),
2024-01-06 18:27:26 +00:00
.product(name: "StatusKit", package: "StatusKit"),
2023-01-17 10:36:01 +00:00
.product(name: "DesignSystem", package: "DesignSystem"),
],
swiftSettings: [
2023-09-16 12:15:03 +00:00
.enableExperimentalFeature("StrictConcurrency"),
2023-01-17 10:36:01 +00:00
]
),
2022-12-19 11:28:55 +00:00
]
)