-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
79 lines (67 loc) · 1.76 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
// swift-tools-version: 5.9
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
// This package will assume C / Objective-C interoperability as it's more common.
// C++ could be enabled with:
// swiftSettings: [.interoperabilityMode(.Cxx)]
// Swift target
private let name: String = "SPFKMetadata"
// C/C++ target
private let nameC: String = "\(name)C"
private let platforms: [PackageDescription.SupportedPlatform]? = [
.macOS(.v11)
]
private let products: [PackageDescription.Product] = [
.library(
name: name,
targets: [name, nameC]
)
]
private let targets: [PackageDescription.Target] = [
// Swift
.target(
name: name,
dependencies: [.target(name: nameC)]
),
// C
.target(
name: nameC,
dependencies: [
.target(name: "tag"),
.target(name: "libsndfile")
],
publicHeadersPath: "include",
cSettings: [
.headerSearchPath("include_private")
],
cxxSettings: [
.headerSearchPath("include_private")
]
),
.binaryTarget(
name: "tag",
path: "Frameworks/tag.xcframework"
),
.binaryTarget(
name: "libsndfile",
path: "Frameworks/libsndfile.xcframework"
),
.testTarget(
name: "\(name)Tests",
dependencies: [
.byNameItem(name: name, condition: nil),
.byNameItem(name: nameC, condition: nil),
],
resources: [
.process("Resources")
]
)
]
let package = Package(
name: name,
defaultLocalization: "en",
platforms: platforms,
products: products,
targets: targets,
cxxLanguageStandard: .cxx20
)