-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathPackage.swift
29 lines (27 loc) · 1.21 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
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "FlowLayout",
platforms: [.iOS(.v12), .macOS(.v10_13)],
products: [
.library(
name: "FlowLayout",
targets: ["FlowLayout"])
],
dependencies: [
.package(url: "https://github.com/eonist/CommonCell.git", .branch("master")),
.package(url: "https://github.com/eonist/ImageSugar.git", .branch("master")),
.package(url: "https://github.com/eonist/NetworkSugar.git", .branch("master")),
.package(url: "https://github.com/eonist/JSONSugar.git", .branch("master")),
.package(url: "https://github.com/eonist/With.git", .branch("master")),
.package(url: "https://github.com/eonist/Spatial.git", .branch("master"))
//.package(url: "https://github.com/eonist/RefreshControlKit.git", .branch("master")),
//.package(url: "https://github.com/eonist/TestRunner.git", .branch("master")),
//.package(url: "https://github.com/eonist/UITestSugar.git", .branch("master"))
],
targets: [
.target(
name: "FlowLayout",
dependencies: ["CommonCell", "ImageSugar", "NetworkSugar", "JSONSugar", "With", "Spatial"])
]
)