Skip to content

Commit

Permalink
add CAudioTarget
Browse files Browse the repository at this point in the history
  • Loading branch information
wtholliday committed Jul 25, 2023
1 parent e2ac59b commit 1626e4e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,12 @@ let package = Package(
dependencies: ["Audio", "AudioFiles", "Utilities", "MIDI", "Taps"],
swiftSettings: [concurrency]),
.target(name: "Audio",
dependencies: ["MIDI", "Utilities", .product(name: "Atomics", package: "swift-atomics")],
dependencies: ["MIDI", "Utilities", "CAudio", .product(name: "Atomics", package: "swift-atomics")],
swiftSettings: [
.unsafeFlags(["-Xfrontend", "-warn-long-expression-type-checking=50"]),
concurrency
]),
.target(name: "CAudio"),
.target(name: "AudioFiles",
dependencies: ["Utilities"],
swiftSettings: [concurrency]),
Expand Down
1 change: 1 addition & 0 deletions Sources/CAudio/CAudio.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#include "CAudio.h"
1 change: 1 addition & 0 deletions Sources/CAudio/include/CAudio.h
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#pragma once

0 comments on commit 1626e4e

Please sign in to comment.