I am new to Juce and creating VST3 plug-ins, so I’m sure I’m missing something obvious. My basic issue is that I used Juce and Xcode to create a VST3 plugin on a Mac (following the Juce tutorials), but after a successful build I can’t find the plug-in. Where is the output VST3 product located on a Mac and what is the file type?
As a background level-setting exercise, I am able to create and execute a simple ‘Hello World’ GUI using Juce/Xcode, so the basic development infrastructure is working correctly. Another data point: I have not had much luck using the AudioPluginHost utility (scanning for new VST3 plugins fails).
If this is where your JUCE project lives, normally the binaries should be located at: users/home/Documents/Juce Projects/VST3-10-28-1726/Builds/MacOSX/build/Release
The binaries are only copied to where the plugins are scanned by DAWs if ou have enabled the “Plugin Copy Step” inside the Xcode Debug/Release settings of Projucer:
Only in this case the binaries are copied to:
/Library/Audio/Plug-Ins/VST3/ (default value)
OK, that’s a big help and reduced some of the confusion - it was set to ‘AU’ only. After changing to ‘All’ and rebuilt - now I see the VST3 file under my “Juce Projects/…/Build” folder
Thanks a bunch! Next…