forked from FolioReader/FolioReaderKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
39 lines (38 loc) · 1.3 KB
/
Package.swift
File metadata and controls
39 lines (38 loc) · 1.3 KB
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
36
37
38
39
// swift-tools-version:5.5
import PackageDescription
let package = Package(
name: "FolioReaderKit",
platforms: [
.iOS(.v11) // 設定最低支援的 iOS 版本
],
products: [
.library(
name: "FolioReaderKit",
targets: ["FolioReaderKit"]
),
],
dependencies: [
.package(url: "https://github.com/ZipArchive/ZipArchive.git", from: "2.5.0"),
.package(url: "https://github.com/cxa/MenuItemKit.git", from: "3.0.0"),
.package(url: "https://github.com/zoonooz/ZFDragableModalTransition.git", from: "0.6.0"),
.package(url: "https://github.com/tadija/AEXML.git", from: "4.2.0"),
.package(url: "https://github.com/ArtSabintsev/FontBlaster.git", from: "4.0.0"),
.package(url: "https://github.com/fantim/JSQWebViewController.git", from: "6.1.0"),
.package(url: "https://github.com/realm/realm-cocoa.git", from: "3.1.0"),
],
targets: [
.target(
name: "FolioReaderKit",
dependencies: [
"ZipArchive",
"MenuItemKit",
"ZFDragableModalTransition",
"AEXML",
"FontBlaster",
"JSQWebViewController",
"Realm"
],
path: "Sources"
),
]
)