-
Notifications
You must be signed in to change notification settings - Fork 13
/
Package.swift
34 lines (32 loc) · 1.59 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
// swift-tools-version:5.1
import PackageDescription
let package = Package(
name: "UtiliKit",
platforms: [
.iOS("10.0")
],
products: [
.library(
name: "UtiliKit",
targets: ["GeneralUtilities", "Instantiation", "TimelessDate", "Versioning",
"ContainerViewController", "ActiveLabel", "Obfuscation", "ScrollingPageControl"]),
.library(name: "GeneralUtilities", targets: ["GeneralUtilities"]),
.library(name: "Instantiation", targets: ["Instantiation"]),
.library(name: "TimelessDate", targets: ["TimelessDate"]),
.library(name: "Versioning", targets: ["Versioning"]),
.library(name: "ContainerViewController", targets: ["ContainerViewController"]),
.library(name: "ActiveLabel", targets: ["ActiveLabel"]),
.library(name: "Obfuscation", targets: ["Obfuscation"]),
.library(name: "ScrollingPageControl", targets: ["ScrollingPageControl"])
],
targets: [
.target(name: "GeneralUtilities", path: "Sources/General"),
.target(name: "Instantiation", path: "Sources/Instantiation"),
.target(name: "TimelessDate", path: "Sources/TimelessDate"),
.target(name: "Versioning", path: "Sources/Version"),
.target(name: "ContainerViewController", path: "Sources/Container"),
.target(name: "ActiveLabel", path: "Sources/ActiveLabel"),
.target(name: "Obfuscation", path: "Sources/Obfuscation"),
.target(name: "ScrollingPageControl", dependencies: [.target(name: "GeneralUtilities")], path: "Sources/ScrollingPageControl")
]
)