jucer_appconfig_header

Specify the content of the AppConfig.h header that is not defined in the .jucer file.

jucer_appconfig_header(
  USER_CODE_SECTION <user_code_section>
)

Example

From the AudioPluginHost extra of JUCE 5.4.3:

185jucer_appconfig_header(
186  USER_CODE_SECTION
187"
188#ifndef JUCE_ANDROID
189 #define JUCE_MODAL_LOOPS_PERMITTED   (! JUCE_IOS)
190#endif
191"
192)