-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathPackage.swift
More file actions
27 lines (25 loc) · 757 Bytes
/
Package.swift
File metadata and controls
27 lines (25 loc) · 757 Bytes
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
// swift-tools-version: 5.10
import PackageDescription
let package = Package(
name: "SwiftMetronome",
platforms: [.visionOS(.v1)],
products: [
.library(
name: "SwiftMetronome",
targets: ["SwiftMetronome"]),
],
dependencies: [
.package(url: "https://github.com/AudioKit/AudioKit.git", from: "5.0.0"),
.package(url: "https://github.com/Matt54/ResizableVector.git", from: "1.0.0")
],
targets: [
.target(
name: "SwiftMetronome",
dependencies: ["AudioKit", "ResizableVector"],
resources: [.process("Resources")]
),
.testTarget(
name: "SwiftMetronomeTests",
dependencies: ["SwiftMetronome"]),
]
)