-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
31 lines (29 loc) · 932 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: 6.0
import PackageDescription
let package = Package(
name: "SJSAssetExportSession",
platforms: [
.macOS(.v14),
.iOS(.v17),
],
products: [
.library(
name: "SJSAssetExportSession",
targets: ["SJSAssetExportSession"]),
],
targets: [
.target(name: "SJSAssetExportSession"),
.testTarget(
name: "SJSAssetExportSessionTests",
dependencies: ["SJSAssetExportSession"],
resources: [
.process("Resources/test-4k-hdr-hevc-30fps.mov"),
.process("Resources/test-720p-h264-24fps.mov"),
.process("Resources/test-no-audio.mp4"),
.process("Resources/test-no-video.m4a"),
.process("Resources/test-spatial-audio.mov"),
.process("Resources/test-x264-1080p-h264-60fps.mp4"),
]
),
]
)