forked from LeoNatan/LNPopupUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
35 lines (33 loc) · 934 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
34
35
// swift-tools-version:5.9
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/LeoNatan/LNPopupController.git", from: Version(stringLiteral: "2.19.0")),
// .package(path: "../LNSwiftUIUtils"),
.package(url: "https://github.com/LeoNatan/LNSwiftUIUtils.git", from: Version(stringLiteral: "1.1.0"))
],
targets: [
.target(
name: "LNPopupUI",
dependencies: [
.product(name: "LNSwiftUIUtils", package: "LNSwiftUIUtils"),
.product(name: "LNPopupController-Static", package: "LNPopupController")
])
]
)