1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-25 02:04:23 +00:00

Introjucer: codeblocks export fix.

This commit is contained in:
jules 2014-08-06 11:56:57 +01:00
parent b052208cf4
commit f3447b3ece

View file

@ -118,6 +118,17 @@ private:
StringPairArray defines;
defines.set ("__MINGW__", "1");
defines.set ("__MINGW_EXTENSION", String::empty);
if (config.isDebug())
{
defines.set ("DEBUG", "1");
defines.set ("_DEBUG", "1");
}
else
{
defines.set ("NDEBUG", "1");
}
defines = mergePreprocessorDefs (defines, getAllPreprocessorDefs (config));
StringArray defs;