mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-10-31 22:28:58 +00:00
24 lines
437 B
Swift
24 lines
437 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: "DesignSystem",
|
||
|
platforms: [
|
||
|
.iOS(.v16),
|
||
|
],
|
||
|
products: [
|
||
|
.library(
|
||
|
name: "DesignSystem",
|
||
|
targets: ["DesignSystem"]),
|
||
|
],
|
||
|
dependencies: [],
|
||
|
targets: [
|
||
|
.target(
|
||
|
name: "DesignSystem",
|
||
|
dependencies: []),
|
||
|
]
|
||
|
)
|
||
|
|