Update the JACK bindings

We should no longer have to use our own fork for this.
This commit is contained in:
Robbert van der Helm
2023-02-26 16:23:24 +01:00
parent 86adca2e5a
commit 49e99eef53
4 changed files with 13 additions and 9 deletions

View File

@@ -7,10 +7,10 @@ license = "GPL-3.0-or-later"
homepage = "https://github.com/robbert-vdh/nih-plug/tree/master/plugins/spectral_compressor"
[lib]
crate-type = ["cdylib"]
crate-type = ["lib", "cdylib"]
[dependencies]
nih_plug = { path = "../../", features = ["assert_process_allocs"] }
nih_plug = { path = "../../", features = ["assert_process_allocs", "standalone"] }
nih_plug_vizia = { path = "../../nih_plug_vizia" }
realfft = "3.0"

View File

@@ -0,0 +1,3 @@
fn main() {
nih_plug::nih_export_standalone::<spectral_compressor::SpectralCompressor>();
}