From 7bc3b6acfa663487688ed2eb2ca8ff5f478897f7 Mon Sep 17 00:00:00 2001 From: tico-tico Date: Thu, 14 Apr 2016 18:26:04 +0300 Subject: [PATCH] tweak JUCE's flags to reduce execs size and compilation time --- Dexed.jucer | 4 +++- JuceLibraryCode/AppConfig.h | 12 ++++++------ 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/Dexed.jucer b/Dexed.jucer index f34fb59..75f45da 100644 --- a/Dexed.jucer +++ b/Dexed.jucer @@ -193,5 +193,7 @@ - + diff --git a/JuceLibraryCode/AppConfig.h b/JuceLibraryCode/AppConfig.h index ae82088..7b3357a 100644 --- a/JuceLibraryCode/AppConfig.h +++ b/JuceLibraryCode/AppConfig.h @@ -83,23 +83,23 @@ // juce_audio_formats flags: #ifndef JUCE_USE_FLAC - //#define JUCE_USE_FLAC + #define JUCE_USE_FLAC 0 #endif #ifndef JUCE_USE_OGGVORBIS - //#define JUCE_USE_OGGVORBIS + #define JUCE_USE_OGGVORBIS 0 #endif #ifndef JUCE_USE_MP3AUDIOFORMAT - //#define JUCE_USE_MP3AUDIOFORMAT + #define JUCE_USE_MP3AUDIOFORMAT 0 #endif #ifndef JUCE_USE_LAME_AUDIO_FORMAT - //#define JUCE_USE_LAME_AUDIO_FORMAT + #define JUCE_USE_LAME_AUDIO_FORMAT 0 #endif #ifndef JUCE_USE_WINDOWS_MEDIA_FORMAT - //#define JUCE_USE_WINDOWS_MEDIA_FORMAT + #define JUCE_USE_WINDOWS_MEDIA_FORMAT 0 #endif //============================================================================== @@ -178,7 +178,7 @@ // juce_gui_extra flags: #ifndef JUCE_WEB_BROWSER - //#define JUCE_WEB_BROWSER + #define JUCE_WEB_BROWSER 0 #endif #ifndef JUCE_ENABLE_LIVE_CONSTANT_EDITOR