forked from kingslay/KSPlayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
54 lines (53 loc) · 1.9 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// swift-tools-version:5.7
import Foundation
import PackageDescription
let package = Package(
name: "KSPlayer",
defaultLocalization: "en",
platforms: [.macOS(.v10_15),
// .visionOS(.v1),
.iOS(.v13), .tvOS(.v13)],
products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages.
.library(
name: "KSPlayer",
// todo clang: warning: using sysroot for 'iPhoneSimulator' but targeting 'MacOSX' [-Wincompatible-sysroot]
// type: .dynamic,
targets: ["KSPlayer"]
),
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
.target(
name: "KSPlayer",
dependencies: [
.product(name: "FFmpegKit", package: "FFmpegKit"),
// .product(name: "Libass", package: "FFmpegKit"),
// .product(name: "Libmpv", package: "FFmpegKit"),
],
resources: [.process("Metal/Shaders.metal")]
),
.testTarget(
name: "KSPlayerTests",
dependencies: ["KSPlayer"],
resources: [.process("Resources")]
),
]
)
var ffmpegKitPath = FileManager.default.currentDirectoryPath + "/FFmpegKit"
if !FileManager.default.fileExists(atPath: ffmpegKitPath), let url = URL(string: #file) {
let path = url.deletingLastPathComponent().path
// 解决用xcode引入spm的时候,依赖关系出错的问题
if !path.contains("/checkouts/") {
ffmpegKitPath = path + "/FFmpegKit"
}
}
if FileManager.default.fileExists(atPath: ffmpegKitPath + "/Package.swift") {
package.dependencies += [
.package(path: ffmpegKitPath),
]
} else {
package.dependencies += [
.package(url: "https://github.com/kingslay/FFmpegKit.git", from: "6.0.1"),
]
}