-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
42 lines (39 loc) · 977 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
34
35
36
37
38
39
40
41
42
// swift-tools-version:5.9
import PackageDescription
let version: Version = "1.40.1"
let package = Package(
name: "BanubaVideoEditorCore",
platforms: [
.iOS(.v15)
],
products: [
.library(
name: "BanubaVideoEditorCore",
targets: ["BanubaVideoEditorCoreTarget"]
)
],
dependencies: [
.package(url: "https://github.com/Banuba/BanubaUtilities-iOS.git", exact: version),
],
targets: [
.target(
name: "BanubaVideoEditorCoreWrapper",
dependencies: [
"BanubaVideoEditorCore",
.product(name: "BanubaUtilities", package: "BanubaUtilities-iOS")
],
path: "BanubaVideoEditorCoreWrapper"
),
.target(
name: "BanubaVideoEditorCoreTarget",
dependencies: [
.target(name: "BanubaVideoEditorCoreWrapper")
],
path: "BanubaVideoEditorCoreTarget"
),
.binaryTarget(
name: "BanubaVideoEditorCore",
path: "BanubaVideoEditorCore.xcframework"
)
]
)