forked from FluidGroup/Brightroom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
31 lines (30 loc) · 838 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
// swift-tools-version:5.7
import PackageDescription
let package = Package(
name: "Brightroom",
platforms: [
.iOS(.v13)
],
products: [
.library(name: "BrightroomEngine", targets: ["BrightroomUI"]),
.library(name: "BrightroomUI", targets: ["BrightroomUI"]),
],
dependencies: [
.package(url: "https://github.com/VergeGroup/Verge.git", from: "11.5.3"),
.package(url: "https://github.com/FluidGroup/TransitionPatch.git", from: "1.0.3")
],
targets: [
.target(
name: "BrightroomEngine",
dependencies: ["Verge"],
exclude: ["Info.plist"]
),
.target(
name: "BrightroomUI",
dependencies: ["BrightroomEngine", "Verge", "TransitionPatch"],
exclude: ["Info.plist"],
swiftSettings: [.define("SWIFT_PACKAGE_MANAGER")]
)
],
swiftLanguageVersions: [.v5]
)