1
0
Fork 0

Move example plugins into a subdirectory

This commit is contained in:
Robbert van der Helm 2022-02-03 16:57:10 +01:00
parent 30609c3ecd
commit 10c306e035
5 changed files with 4 additions and 4 deletions

View file

@ -10,8 +10,8 @@ members = [
"nih_plug_derive",
"xtask",
"plugins/gain",
"plugins/sine",
"plugins/examples/gain",
"plugins/examples/sine",
]
[dependencies]

View file

@ -8,6 +8,6 @@ license = "GPL-3.0-or-later"
crate-type = ["cdylib"]
[dependencies]
nih_plug = { path = "../../", features = ["assert_process_allocs"] }
nih_plug = { path = "../../../", features = ["assert_process_allocs"] }
parking_lot = "0.12"

View file

@ -8,4 +8,4 @@ license = "GPL-3.0-or-later"
crate-type = ["cdylib"]
[dependencies]
nih_plug = { path = "../../", features = ["assert_process_allocs"] }
nih_plug = { path = "../../../", features = ["assert_process_allocs"] }