ProHUD/Package.swift

23 lines
594 B
Swift
Raw Permalink Normal View History

2022-09-10 02:54:25 +08:00
// swift-tools-version:5.6
2020-06-10 13:14:20 +08:00
import PackageDescription
let package = Package(
name: "ProHUD",
platforms: [.iOS(.v10)],
products: [
.library(name: "ProHUD", targets: ["ProHUD"]),
],
dependencies: [
.package(url: "https://github.com/SnapKit/SnapKit.git", "5.0.0" ..< "6.0.0"),
2022-09-10 02:54:25 +08:00
.package(url: "https://github.com/xaoxuu/Inspire.git", "3.0.0" ..< "4.0.0"),
2020-06-10 13:14:20 +08:00
],
targets: [
.target(
name: "ProHUD",
dependencies: ["SnapKit", "Inspire"],
2022-09-10 02:54:25 +08:00
resources: [.process("Resources/ProHUD.xcassets")]
2020-06-10 13:14:20 +08:00
)
2022-09-10 02:54:25 +08:00
]
2020-06-10 13:14:20 +08:00
)