Skip to content

Commit

Permalink
Updated to AK 5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
aure committed Dec 23, 2021
1 parent 3ddab77 commit 8a1685a
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 5 deletions.
13 changes: 11 additions & 2 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,17 @@
"repositoryURL": "https://github.com/AudioKit/AudioKit",
"state": {
"branch": null,
"revision": "5eefc06cc8c503624c92edcb4acbf28574f08acf",
"version": "5.2.1"
"revision": "3360ddec30659447201a9ca4360d20cd924aab32",
"version": "5.3.0"
}
},
{
"package": "AudioKitEX",
"repositoryURL": "https://github.com/AudioKit/AudioKitEX",
"state": {
"branch": null,
"revision": "214bedd90e9a4ff03f55c4dc3b918082b6a7ebeb",
"version": "5.3.0"
}
}
]
Expand Down
9 changes: 6 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,14 @@ let package = Package(
name: "STKAudioKit",
platforms: [.macOS(.v10_13), .iOS(.v11), .tvOS(.v11)],
products: [.library(name: "STKAudioKit", targets: ["STKAudioKit"])],
dependencies: [.package(url: "https://github.com/AudioKit/AudioKit", from: "5.2.0")],
dependencies: [
.package(url: "https://github.com/AudioKit/AudioKit", from: "5.3.0"),
.package(url: "https://github.com/AudioKit/AudioKitEX", from: "5.3.0"),
],
targets: [
.target(name: "Stk", exclude: ["LICENSE"], resources: [.copy("rawwaves")]),
.target(name: "STKAudioKit", dependencies: ["AudioKit", "CSTKAudioKit", "Stk"]),
.target(name: "CSTKAudioKit", dependencies: ["AudioKit", "Stk"]),
.target(name: "STKAudioKit", dependencies: ["AudioKit", "AudioKitEX", "CSTKAudioKit", "Stk"]),
.target(name: "CSTKAudioKit", dependencies: ["AudioKit", "AudioKitEX", "Stk"]),
.testTarget(name: "STKAudioKitTests", dependencies: ["STKAudioKit"]),
],
cxxLanguageStandard: .cxx14
Expand Down

0 comments on commit 8a1685a

Please sign in to comment.