forked from LeoNatan/LNPopupUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
33 lines (31 loc) · 821 Bytes
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// swift-tools-version:5.5
import PackageDescription
let package = Package(
name: "LNPopupUI",
platforms: [
.iOS(.v14),
.macCatalyst(.v14)
],
products: [
.library(
name: "LNPopupUI",
type: .dynamic,
targets: ["LNPopupUI"]),
.library(
name: "LNPopupUI-Static",
type: .static,
targets: ["LNPopupUI"]),
],
dependencies: [
// .package(path: "../LNPopupController")
.package(url: "https://github.com/llsc12/LNPopupController.git", branch: "master")
// .package(url: "https://github.com/llsc12/LNPopupController.git", from: Version(stringLiteral: "2.15.18"))
],
targets: [
.target(
name: "LNPopupUI",
dependencies: [
.product(name: "LNPopupController-Static", package: "LNPopupController")
])
]
)