generated from element-hq/.github
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Package.swift
29 lines (28 loc) · 1011 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
// swift-tools-version:5.5.0
import PackageDescription
let package = Package(
name: "SwiftOGG",
platforms: [
.iOS(.v10), .macOS(.v10_15),
],
products: [
.library(name: "SwiftOGG", targets: ["SwiftOGG"]),
],
dependencies: [
.package(
name: "YbridOpus",
url: "https://github.com/vector-im/opus-swift",
from: "0.8.4"),
.package(
name: "YbridOgg",
url: "https://github.com/vector-im/ogg-swift.git",
from: "0.8.3")
],
targets: [
// To debug with a local framework
// .binaryTarget(name: "YbridOpus", path: "YbridOpus.xcframework"),
.target(name: "Copustools", path: "Sources/SupportingFiles/Dependencies/Copustools"),
.target(name: "SwiftOGG", dependencies: ["YbridOpus", "YbridOgg", "Copustools"], path: "Sources/SwiftOgg"),
.testTarget(name: "EncoderDecoderTests", dependencies: ["SwiftOGG"], resources: [.process("Resources")]),
]
)