mirror of
https://github.com/nicoverbruggen/NVAppUpdater.git
synced 2025-08-07 17:50:07 +02:00
17 lines
408 B
Swift
17 lines
408 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: "AppUpdater",
|
|
defaultLocalization: "en"
|
|
platforms: [.macOS(.v11)],
|
|
products: [
|
|
.library(name: "AppUpdater", targets: ["AppUpdater"]),
|
|
],
|
|
targets: [
|
|
.target(name: "AppUpdater"),
|
|
]
|
|
)
|