Standalone wrapper not building any longer on J7

Hi guys,

since I’ve updated to JUCE 7, the standalone wrapper is not building any longer. It is hitting a lot of define errors. I checked both the changelog and breaking changes and I couldn’t find anything about it.

Any hint?

Thanks,
Luca

Are you using the JUCE-provided standalone wrapper, or a custom one? From the screenshot, it looks like you’re using a custom one.

I can’t immediately think of any changes that might have introduced this breakage.

In the Projucer, is “Use Global AppConfig Header” enabled or disabled? If it’s enabled, perhaps there was a change in the include order that means that the AppConfig.h is no longer included before CheckSettingMacros.h. You could check that your AppConfig.h is really included directly at the top of the Standalone wrapper translation unit.

Thanks reuk. I fixed it by including <JuceHeader.h>, that was missing from this updated version of my custom wrapper.

Luca