mirror of
https://github.com/robbert-vdh/nih-plug.git
synced 2026-07-01 02:36:54 +00:00
Add boilerplate for an actual JACK implementation
This commit is contained in:
@@ -47,7 +47,7 @@ assert_process_allocs = ["dep:assert_no_alloc"]
|
||||
# Enables an export target for standalone binaries through the
|
||||
# `nih_export_standalone()` function. Disabled by default, as this requires
|
||||
# building additional dependencies for audio and MIDI handling.
|
||||
standalone = ["dep:anyhow", "dep:baseview", "dep:clap"]
|
||||
standalone = ["dep:anyhow", "dep:baseview", "dep:clap", "dep:jack"]
|
||||
# Enables the `nih_export_vst3!()` macro. Enabled by default. This feature
|
||||
# exists mostly for GPL-compliance reasons, since even if you don't use the VST3
|
||||
# wrapper you might otherwise still include a couple (unused) symbols from the
|
||||
@@ -89,6 +89,7 @@ anyhow = { version = "1.0", optional = true }
|
||||
baseview = { git = "https://github.com/robbert-vdh/baseview.git", branch = "feature/resize", features = ["opengl"], optional = true }
|
||||
# All the claps!
|
||||
clap = { version = "3.2", features = ["derive"], optional = true }
|
||||
jack = { version = "0.10.0", optional = true }
|
||||
|
||||
# Used for the `vst3` feature
|
||||
vst3-sys = { git = "https://github.com/robbert-vdh/vst3-sys.git", branch = "fix/note-off-event", optional = true }
|
||||
|
||||
Reference in New Issue
Block a user