overdrivenpotato / rust-vst2

VST 2.4 API implementation in rust. Create plugins or hosts.
MIT License
221 stars 23 forks source link

Fixed a naming error in the MacOS build script. #24

Closed monomadic closed 7 years ago

monomadic commented 7 years ago

This script doesn't work on MacOS unless your plugin is literally named 'vst'. Most DAWs won't report an error directly and fail silently, but those that do print the error to console Cannot find executable for CFBundle.

I found changing the name of the CFBundleExecutable key to the binary name fixed the problem.

overdrivenpotato commented 7 years ago

Thanks!