-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathPackage.swift
31 lines (29 loc) · 1.46 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
// swift-tools-version:5.5
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "SoundpipeAudioKit",
platforms: [.macOS(.v12), .iOS(.v13), .tvOS(.v13)],
products: [.library(name: "SoundpipeAudioKit", targets: ["SoundpipeAudioKit"])],
dependencies: [
.package(url: "https://github.com/AudioKit/KissFFT", from: "1.0.0"),
.package(url: "https://github.com/AudioKit/AudioKit", from: "5.6.0"),
.package(url: "https://github.com/AudioKit/AudioKitEX", from: "5.5.0"),
],
targets: [
.target(name: "Soundpipe",
dependencies: ["KissFFT"],
exclude: ["lib/inih/LICENSE.txt"],
cSettings: [
.headerSearchPath("lib/inih"),
.headerSearchPath("Sources/soundpipe/lib/inih"),
.headerSearchPath("modules"),
.headerSearchPath("external"),
]),
.target(name: "SoundpipeAudioKit", dependencies: ["AudioKit", "AudioKitEX", "CSoundpipeAudioKit"]),
.target(name: "CSoundpipeAudioKit", dependencies: ["AudioKit", "AudioKitEX", "Soundpipe"]),
.testTarget(name: "SoundpipeAudioKitTests", dependencies: ["SoundpipeAudioKit"], resources: [.copy("TestResources/")]),
.testTarget(name: "CSoundpipeAudioKitTests", dependencies: ["CSoundpipeAudioKit"]),
],
cxxLanguageStandard: .cxx14
)