Experimental JUCER doesn't seem to recognize .cc files

Hello!

My project now has some .cc files in it (they are generated automatically by another process) - and I’ve added them to the experimental JUCER project but they don’t get built.

If I rename the .cc files to .cpp, everything is fine!

You can fix it by changing jucer_CommonHeaders.h, line 49 toconst char* const sourceFileExtensions = "cpp;cc;mm;m;c;h;hpp";

The fix required more changes than that.

Search for the string “cpp;” in the source directory, it should be pretty obvious!

Ok, will do that!

some libraries out there seem to use .cxx and .hxx too… just in case