pipelined / vst2

Build vst2 plugins and hosts with Go
MIT License
135 stars 17 forks source link

OS X plugin bundler #40

Open dudk opened 3 years ago

dudk commented 3 years ago

Provide CLI that would bundle compiled plugin to OS X bundle. Here is the example of bundler from rust vst2 project.

Command to compile plugin into Mach-O bundle:

go build --buildmode c-archive --tags plugin -o demoplugin.a 
clang -bundle -o demoplugin -all_load demoplugin.a