Hi,
how can i export my audio plugin for all plattforms?
I’m currently on macos and as far as im concerned i just can export for macos. Is there a way to export my plugin for other plattforms? (win and mac, au&vst3)
You can’t build on macOS for Windows, or vice versa. You need a Windows computer or virtual machine with Visual Studio to build the Windows version.
You can regenerate the exporters for all platforms using --resave on the Projucer command-line. This of course won’t actually build those platforms it just generates the platform specific build files.
okay thank you
If you haven’t got a Windows machine yourself, using a cloud-based CI platform like GitHub Actions would be the best option. (Even if you do have your own Windows machine, building on CI would still be best practice).
Have a look at the example GitHub Actions workflow in Pamplejuce: pamplejuce/.github/workflows/build_and_test.yml at main · sudara/pamplejuce · GitHub