JuceLibraryCode

Is JuceLibraryCode such a directory which I need to add to my git project? I.e. is JuceLibraryCode content created each time you launch Xcode/Visual Studio via Projucer, or is it created only once when you create the actual Projucer project?

There’s a readme.txt file in the JuceLibraryCode directory that explains things:

With the exception of AppConfig.h:

//==============================================================================
// [BEGIN_USER_CODE_SECTION]

// (You can add your own code in this section, and the Projucer will not overwrite it)
#define JUCE_MODAL_LOOPS_PERMITTED 1

// [END_USER_CODE_SECTION]

So I usually re-add AppConfig in .gitignore:

**/JuceLibraryCode/
!**/JuceLibraryCode/AppConfig.h
2 Likes

Thank you!

I’ll do the same.