Post-build command on VST3, but not SharedCode

A VST3 project generated with Projucer have two targets: SharedCode and VST3. Is there a simple way to add Post-build commands in Projucer that only applies to one target, in this case the VST3.

I copy the vst directly into the vst folder using: copy /Y “(OutDir)(TargetFileName)” “%CommonProgramW6432%\VST3$(TargetFileName)”. However, since it applies to both targets, the lib generated by SharedCode is copied as well.

You can set up the plugin copy steps in the Projucer and it should make the copying work properly.

Excellent. Thanks!