-
Notifications
You must be signed in to change notification settings - Fork 3
/
Package.swift
34 lines (33 loc) · 1.04 KB
/
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
// swift-tools-version:6.0
import PackageDescription
let package = Package(
name: "LionheartOtherAppsViewController",
platforms: [
.iOS(.v15)
],
products: [
.library(
name: "LionheartOtherAppsViewController",
targets: ["LionheartOtherAppsViewController"]
)
],
dependencies: [
.package(url: "https://github.com/lionheart/QuickTableView.git", from: "5.0.0"),
.package(url: "https://github.com/lionheart/SuperLayout.git", from: "4.0.0")
],
targets: [
.target(
name: "LionheartOtherAppsViewController",
dependencies: [
.product(name: "QuickTableView", package: "QuickTableView"),
.product(name: "SuperLayout", package: "SuperLayout")
],
path: "LionheartOtherAppsViewController/Classes"
),
.testTarget(
name: "LionheartOtherAppsViewControllerTests",
dependencies: ["LionheartOtherAppsViewController"]
)
],
swiftLanguageModes: [.v4]
)