mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-12-23 13:28:50 +01:00
25 lines
475 B
Swift
25 lines
475 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: "Network",
|
||
|
platforms: [
|
||
|
.iOS(.v16),
|
||
|
],
|
||
|
products: [
|
||
|
.library(
|
||
|
name: "Network",
|
||
|
targets: ["Network"]),
|
||
|
],
|
||
|
targets: [
|
||
|
.target(
|
||
|
name: "Network",
|
||
|
dependencies: []),
|
||
|
.testTarget(
|
||
|
name: "NetworkTests",
|
||
|
dependencies: ["Network"]),
|
||
|
]
|
||
|
)
|