-
-
Notifications
You must be signed in to change notification settings - Fork 304
/
Package.swift
33 lines (32 loc) · 984 Bytes
/
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.9
import PackageDescription
let package = Package(
name: "Brightroom",
platforms: [
.iOS(.v15)
],
products: [
.library(name: "BrightroomEngine", targets: ["BrightroomUI"]),
.library(name: "BrightroomUI", targets: ["BrightroomUI"]),
.library(name: "BrightroomUIPhotosCrop", targets: ["BrightroomUIPhotosCrop"])
],
dependencies: [
.package(url: "https://github.com/VergeGroup/Verge.git", from: "12.0.0-beta.2"),
.package(url: "https://github.com/FluidGroup/TransitionPatch.git", from: "1.0.3"),
.package(url: "https://github.com/FluidGroup/PrecisionLevelSlider", from: "2.1.0"),
],
targets: [
.target(
name: "BrightroomEngine",
dependencies: ["Verge"]
),
.target(
name: "BrightroomUI",
dependencies: ["BrightroomEngine", "Verge", "TransitionPatch"]
),
.target(
name: "BrightroomUIPhotosCrop",
dependencies: ["BrightroomUI", "PrecisionLevelSlider"]
)
]
)