-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProject.swift
38 lines (37 loc) · 1.18 KB
/
Project.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
import ProjectDescription
let project = Project(
name: "AudioTag",
targets: [
.target(
name: "AudioTag",
destinations: .macOS,
product: .app,
bundleId: "com.foyoodo.AudioTag",
deploymentTargets: .macOS("14.0"),
infoPlist: .extendingDefault(with: [
"UTExportedTypeDeclarations": [
[
"UTTypeIdentifier": "com.foyoodo.AudioTag-FileItem",
"UTTypeConformsTo": [ "public.data" ],
"UTTypeDescription": "FileItem",
]
]
]),
sources: ["AudioTag/Sources/**"],
resources: ["AudioTag/Resources/**"],
dependencies: [
.external(name: "TagLib-Swift"),
]
),
.target(
name: "AudioTagTests",
destinations: .macOS,
product: .unitTests,
bundleId: "com.foyoodo.AudioTagTests",
infoPlist: .default,
sources: ["AudioTag/Tests/**"],
resources: [],
dependencies: [.target(name: "AudioTag")]
),
]
)