Jucer 1.45 and Mingw

Hi in 1.45 you changed some lines in jucer_Headers.h

–1.43 code
#if 1
#include <juce.h>
#else
#include “…/…/…/src/juce_WithoutMacros.h”
#include “…/…/…/src/juce_DefineMacros.h”
#endif
–1.45 code
#include “…/…/…/src/juce_WithoutMacros.h”
#include “…/…/…/src/juce_DefineMacros.h”

Under MinGW 1.45 code doesn’t work (some juce_*.h not found when including) but 1.43 code works ???

Another thing - Could you remove whitespace from folder/file names, please?

Thanks, bye

A decent compiler would happily build that, but if there’s a problem, just replace it with #include <juce.h>… Like it says in the comment, I only did it that way for testing.

And no, I can’t just change all the folder names! Even a crock like mingw should cope with a few spaces.

yeah, but every time i make external projects that links to files present in folders like “extras/audio plugins” or “extras/the jucer”, i have to manually modify the premake generated makefile cause the space is driving it mad.

that’s odd !!