mirror of https://github.com/xaoxuu/ProHUD
25 lines
646 B
Swift
25 lines
646 B
Swift
// swift-tools-version:5.3
|
|
|
|
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"),
|
|
.package(url: "https://github.com/xaoxuu/Inspire.git", "2.0.0" ..< "3.0.0"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "ProHUD",
|
|
dependencies: ["SnapKit", "Inspire"],
|
|
path: "Source",
|
|
resources: [.process("ProHUD.xcassets")]
|
|
)
|
|
],
|
|
swiftLanguageVersions: [.v5]
|
|
)
|