-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
33 lines (31 loc) · 1.31 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.6
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "FoundationExtensions",
platforms: [
.iOS(.v13), .macOS(.v10_10), .watchOS(.v6), .tvOS(.v9),
],
products: [
.library(name: "FoundationExtensions", targets: ["FoundationExtensions"]),
.library(name: "FEBuilders", targets: ["FEBuilders"]),
.library(name: "FECommon", targets: ["FECommon"]),
.library(name: "FEDates", targets: ["FEDates"]),
.library(name: "FEOptional", targets: ["FEOptional"]),
.library(name: "FEMirror", targets: ["FEMirror"]),
.library(name: "FERuntime", targets: ["FERuntime"])
],
dependencies: [
.package(url: "https://github.com/dankinsoid/VDCodable.git", from: "2.12.0")
],
targets: [
.target(name: "FERuntimeObjc", dependencies: []),
.target(name: "FERuntime", dependencies: ["FERuntimeObjc"]),
.target(name: "FEBuilders", dependencies: []),
.target(name: "FECommon", dependencies: ["FEBuilders"]),
.target(name: "FEDates", dependencies: []),
.target(name: "FEOptional", dependencies: []),
.target(name: "FEMirror", dependencies: []),
.target(name: "FoundationExtensions", dependencies: ["FERuntime", "FEBuilders", "FECommon", "FEDates", "FEOptional", "FEMirror", "VDCodable"]),
]
)