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:
parent
b052208cf4
commit
f3447b3ece
1 changed files with 11 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue