1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Projucer: Only include jucer_ProjucerAnalytics.h if the juce_analytics module is available

This commit is contained in:
ed 2018-03-16 14:39:38 +00:00
parent d707e43d25
commit 5cfc2d24ea

View file

@ -32,7 +32,10 @@
#include "../CodeEditor/jucer_SourceCodeEditor.h"
#include "../Utility/UI/jucer_ProjucerLookAndFeel.h"
#include "../Licenses/jucer_LicenseController.h"
#include "jucer_ProjucerAnalytics.h"
#if JUCE_MODULE_AVAILABLE_juce_analytics
#include "jucer_ProjucerAnalytics.h"
#endif
struct ChildProcessCache;