1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-11 23:54:18 +00:00

Introjucer: made it possible to override settings in AppConfig.h. Version number bump.

This commit is contained in:
jules 2012-01-12 14:19:16 +00:00
parent ca17d3dd82
commit bdbe7d3f01
26 changed files with 551 additions and 165 deletions

View file

@ -19,9 +19,21 @@
//==============================================================================
// juce_core flags:
//#define JUCE_FORCE_DEBUG
//#define JUCE_LOG_ASSERTIONS
//#define JUCE_CHECK_MEMORY_LEAKS
//#define JUCE_DONT_AUTOLINK_TO_WIN32_LIBRARIES
#ifndef JUCE_FORCE_DEBUG
//#define JUCE_FORCE_DEBUG
#endif
#ifndef JUCE_LOG_ASSERTIONS
//#define JUCE_LOG_ASSERTIONS
#endif
#ifndef JUCE_CHECK_MEMORY_LEAKS
//#define JUCE_CHECK_MEMORY_LEAKS
#endif
#ifndef JUCE_DONT_AUTOLINK_TO_WIN32_LIBRARIES
//#define JUCE_DONT_AUTOLINK_TO_WIN32_LIBRARIES
#endif
#endif // __JUCE_APPCONFIG_3T6YQETY1__