mirror of
https://codeberg.org/unspeaker/vestal.git
synced 2025-12-06 10:46:42 +01:00
This commit is contained in:
parent
07f6f82268
commit
b165573e55
14 changed files with 159 additions and 56 deletions
|
|
@ -23,12 +23,9 @@ fn main () -> Result<(), Box<dyn std::error::Error>> {
|
|||
.search(std::env::current_dir()?)
|
||||
.search(canonicalize(path.clone().parent().expect("invalid parent path"))?)
|
||||
.search("/home/user/Lab/Cosmo/wineprefix/drive_c/windows/system32")
|
||||
.load(true)
|
||||
.unwrap_or_else(|e|panic!("failed to load: {e:?}"))
|
||||
.resolve(true)
|
||||
.unwrap_or_else(|e|panic!("failed to resolve: {e:?}"))
|
||||
.relink()
|
||||
.unwrap_or_else(|e|panic!("failed to relink: {e:?}"));
|
||||
.load(true).unwrap_or_else(|e|panic!("failed to load: {e:?}"))
|
||||
.resolve(true).unwrap_or_else(|e|panic!("failed to resolve: {e:?}"))
|
||||
.relink().unwrap_or_else(|e|panic!("failed to relink: {e:?}"));
|
||||
} else {
|
||||
println!("Pass a path to a VST DLL");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue