This repository has been archived by the owner on Oct 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
47 lines (45 loc) · 1.52 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
// swift-tools-version:5.7
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "SongSprout",
platforms: [
.macOS(.v12), .iOS(.v15)
],
products: [
.library(
name: "SongSprout",
type: .static,
targets: ["SongSprout"]),
],
dependencies: [
.package(url: "https://github.com/btfranklin/ControlledChaos.git",
from: "1.3.2"),
.package(url: "https://github.com/AudioKit/AudioKit.git",
from: "5.6.2"),
.package(url: "https://github.com/AudioKit/AudioKitEX.git",
from: "5.6.0"),
.package(url: "https://github.com/AudioKit/SoundpipeAudioKit.git",
from: "5.6.1"),
],
targets: [
.target(
name: "SongSprout",
dependencies: [
.product(name: "ControlledChaos",
package: "ControlledChaos"),
.product(name: "AudioKit",
package: "AudioKit"),
.product(name: "AudioKitEX",
package: "AudioKitEX"),
.product(name: "SoundpipeAudioKit",
package: "SoundpipeAudioKit")
],
resources: [
.process("Resources/GeneralUser GS v1.471.sf2")
]),
.testTarget(
name: "SongSproutTests",
dependencies: ["SongSprout"]),
]
)