mirror of
https://github.com/nicoverbruggen/NVAlert.git
synced 2025-08-06 01:00:09 +02:00
18 lines
373 B
Swift
18 lines
373 B
Swift
// swift-tools-version: 5.10
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "NVAlert",
|
|
products: [
|
|
.library(
|
|
name: "NVAlert",
|
|
targets: ["NVAlert"]),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "NVAlert"),
|
|
]
|
|
)
|