mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-06 04:00:08 +00:00
Removed some unnecessary includes of AppConfig.h
This commit is contained in:
parent
c95253fad0
commit
923e8fabdb
20 changed files with 10 additions and 93 deletions
|
|
@ -31,9 +31,6 @@
|
|||
#error "Incorrect use of JUCE cpp file"
|
||||
#endif
|
||||
|
||||
// Your project must contain an AppConfig.h file with your project-specific settings in it,
|
||||
// and your header search path must make it accessible to the module's files.
|
||||
#include "AppConfig.h"
|
||||
#include "juce_audio_basics.h"
|
||||
|
||||
#if JUCE_MINGW && ! defined (__SSE2__)
|
||||
|
|
|
|||
|
|
@ -31,10 +31,6 @@
|
|||
#error "Incorrect use of JUCE cpp file"
|
||||
#endif
|
||||
|
||||
// Your project must contain an AppConfig.h file with your project-specific settings in it,
|
||||
// and your header search path must make it accessible to the module's files.
|
||||
#include "AppConfig.h"
|
||||
|
||||
#include "../juce_core/native/juce_BasicNativeHeaders.h"
|
||||
#include "juce_audio_devices.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -31,10 +31,6 @@
|
|||
#error "Incorrect use of JUCE cpp file"
|
||||
#endif
|
||||
|
||||
// Your project must contain an AppConfig.h file with your project-specific settings in it,
|
||||
// and your header search path must make it accessible to the module's files.
|
||||
#include "AppConfig.h"
|
||||
|
||||
#include "../juce_core/native/juce_BasicNativeHeaders.h"
|
||||
#include "juce_audio_formats.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -31,10 +31,6 @@
|
|||
#error "Incorrect use of JUCE cpp file"
|
||||
#endif
|
||||
|
||||
// Your project must contain an AppConfig.h file with your project-specific settings in it,
|
||||
// and your header search path must make it accessible to the module's files.
|
||||
#include "AppConfig.h"
|
||||
|
||||
#include "../juce_core/native/juce_BasicNativeHeaders.h"
|
||||
#include "juce_audio_processors.h"
|
||||
#include "../juce_gui_extra/juce_gui_extra.h"
|
||||
|
|
|
|||
|
|
@ -31,10 +31,6 @@
|
|||
#error "Incorrect use of JUCE cpp file"
|
||||
#endif
|
||||
|
||||
// Your project must contain an AppConfig.h file with your project-specific settings in it,
|
||||
// and your header search path must make it accessible to the module's files.
|
||||
#include "AppConfig.h"
|
||||
|
||||
#include "../juce_core/native/juce_BasicNativeHeaders.h"
|
||||
#include "juce_audio_utils.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -31,10 +31,6 @@
|
|||
#error "Incorrect use of JUCE cpp file"
|
||||
#endif
|
||||
|
||||
// Your project must contain an AppConfig.h file with your project-specific settings in it,
|
||||
// and your header search path must make it accessible to the module's files.
|
||||
#include "AppConfig.h"
|
||||
|
||||
#include "juce_box2d.h"
|
||||
|
||||
#include "box2d/Collision/b2BroadPhase.cpp"
|
||||
|
|
|
|||
|
|
@ -31,10 +31,6 @@
|
|||
#error "Incorrect use of JUCE cpp file"
|
||||
#endif
|
||||
|
||||
// Your project must contain an AppConfig.h file with your project-specific settings in it,
|
||||
// and your header search path must make it accessible to the module's files.
|
||||
#include "AppConfig.h"
|
||||
|
||||
#include "../juce_core/native/juce_BasicNativeHeaders.h"
|
||||
|
||||
#if _MSC_VER
|
||||
|
|
|
|||
|
|
@ -35,11 +35,6 @@
|
|||
#error "Incorrect use of JUCE cpp file"
|
||||
#endif
|
||||
|
||||
// Your project must contain an AppConfig.h file with your project-specific settings in it,
|
||||
// and your header search path must make it accessible to the module's files.
|
||||
#include "AppConfig.h"
|
||||
|
||||
//==============================================================================
|
||||
#include "native/juce_BasicNativeHeaders.h"
|
||||
#include "juce_core.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -29,25 +29,7 @@
|
|||
#ifndef JUCE_CORE_H_INCLUDED
|
||||
#define JUCE_CORE_H_INCLUDED
|
||||
|
||||
#ifndef JUCE_MODULE_AVAILABLE_juce_core
|
||||
/* If you fail to make sure that all your compile units are building JUCE with the same set of
|
||||
option flags, then there's a risk that different compile units will treat the classes as having
|
||||
different memory layouts, leading to very nasty memory corruption errors when they all get
|
||||
linked together. That's why it's best to always include the Introjucer-generated AppConfig.h
|
||||
file before any juce headers.
|
||||
|
||||
Note that if you do have an AppConfig.h file and hit this warning, it means that it doesn't
|
||||
contain the JUCE_MODULE_AVAILABLE_xxx flags, which are necessary for some inter-module
|
||||
functionality to work correctly. In that case, you should either rebuild your AppConfig.h with
|
||||
the latest introjucer, or fix it manually to contain these flags.
|
||||
*/
|
||||
#ifdef _MSC_VER
|
||||
#pragma message ("Have you included your AppConfig.h file before including the JUCE headers?")
|
||||
#else
|
||||
#warning "Have you included your AppConfig.h file before including the JUCE headers?"
|
||||
#endif
|
||||
#endif
|
||||
|
||||
//==============================================================================
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning (push)
|
||||
// Disable warnings for long class names, padding, and undefined preprocessor definitions.
|
||||
|
|
@ -57,7 +39,6 @@
|
|||
#endif
|
||||
#endif
|
||||
|
||||
//==============================================================================
|
||||
#include "system/juce_TargetPlatform.h"
|
||||
|
||||
//=============================================================================
|
||||
|
|
|
|||
|
|
@ -42,6 +42,15 @@
|
|||
- Either JUCE_GCC or JUCE_MSVC
|
||||
*/
|
||||
|
||||
//==============================================================================
|
||||
#ifdef JUCE_APP_CONFIG_HEADER
|
||||
#include JUCE_APP_CONFIG_HEADER
|
||||
#else
|
||||
// Your project must contain an AppConfig.h file with your project-specific settings in it,
|
||||
// and your header search path must make it accessible to the module's files.
|
||||
#include "AppConfig.h"
|
||||
#endif
|
||||
|
||||
//==============================================================================
|
||||
#if (defined (_WIN32) || defined (_WIN64))
|
||||
#define JUCE_WIN32 1
|
||||
|
|
|
|||
|
|
@ -31,10 +31,6 @@
|
|||
#error "Incorrect use of JUCE cpp file"
|
||||
#endif
|
||||
|
||||
// Your project must contain an AppConfig.h file with your project-specific settings in it,
|
||||
// and your header search path must make it accessible to the module's files.
|
||||
#include "AppConfig.h"
|
||||
|
||||
#include "juce_cryptography.h"
|
||||
|
||||
namespace juce
|
||||
|
|
|
|||
|
|
@ -31,10 +31,6 @@
|
|||
#error "Incorrect use of JUCE cpp file"
|
||||
#endif
|
||||
|
||||
// Your project must contain an AppConfig.h file with your project-specific settings in it,
|
||||
// and your header search path must make it accessible to the module's files.
|
||||
#include "AppConfig.h"
|
||||
|
||||
#include "juce_data_structures.h"
|
||||
|
||||
namespace juce
|
||||
|
|
|
|||
|
|
@ -31,10 +31,6 @@
|
|||
#error "Incorrect use of JUCE cpp file"
|
||||
#endif
|
||||
|
||||
// Your project must contain an AppConfig.h file with your project-specific settings in it,
|
||||
// and your header search path must make it accessible to the module's files.
|
||||
#include "AppConfig.h"
|
||||
|
||||
#include "../juce_core/native/juce_BasicNativeHeaders.h"
|
||||
#include "juce_events.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -31,10 +31,6 @@
|
|||
#error "Incorrect use of JUCE cpp file"
|
||||
#endif
|
||||
|
||||
// Your project must contain an AppConfig.h file with your project-specific settings in it,
|
||||
// and your header search path must make it accessible to the module's files.
|
||||
#include "AppConfig.h"
|
||||
|
||||
#include "../juce_core/native/juce_BasicNativeHeaders.h"
|
||||
#include "juce_graphics.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -31,10 +31,6 @@
|
|||
#error "Incorrect use of JUCE cpp file"
|
||||
#endif
|
||||
|
||||
// Your project must contain an AppConfig.h file with your project-specific settings in it,
|
||||
// and your header search path must make it accessible to the module's files.
|
||||
#include "AppConfig.h"
|
||||
|
||||
#define NS_FORMAT_FUNCTION(F,A) // To avoid spurious warnings from GCC
|
||||
|
||||
#include "../juce_core/native/juce_BasicNativeHeaders.h"
|
||||
|
|
|
|||
|
|
@ -31,10 +31,6 @@
|
|||
#error "Incorrect use of JUCE cpp file"
|
||||
#endif
|
||||
|
||||
// Your project must contain an AppConfig.h file with your project-specific settings in it,
|
||||
// and your header search path must make it accessible to the module's files.
|
||||
#include "AppConfig.h"
|
||||
|
||||
#include "../juce_core/native/juce_BasicNativeHeaders.h"
|
||||
#include "juce_gui_extra.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -31,10 +31,6 @@
|
|||
#error "Incorrect use of JUCE cpp file"
|
||||
#endif
|
||||
|
||||
// Your project must contain an AppConfig.h file with your project-specific settings in it,
|
||||
// and your header search path must make it accessible to the module's files.
|
||||
#include "AppConfig.h"
|
||||
|
||||
#include "../juce_core/native/juce_BasicNativeHeaders.h"
|
||||
#include "juce_opengl.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -31,13 +31,8 @@
|
|||
#error "Incorrect use of JUCE cpp file"
|
||||
#endif
|
||||
|
||||
// Your project must contain an AppConfig.h file with your project-specific settings in it,
|
||||
// and your header search path must make it accessible to the module's files.
|
||||
#include "AppConfig.h"
|
||||
|
||||
#include "juce_osc.h"
|
||||
|
||||
|
||||
namespace juce
|
||||
{
|
||||
#include "osc/juce_OSCTypes.cpp"
|
||||
|
|
|
|||
|
|
@ -31,10 +31,6 @@
|
|||
#error "Incorrect use of JUCE cpp file"
|
||||
#endif
|
||||
|
||||
// Your project must contain an AppConfig.h file with your project-specific settings in it,
|
||||
// and your header search path must make it accessible to the module's files.
|
||||
#include "AppConfig.h"
|
||||
|
||||
#include "juce_tracktion_marketplace.h"
|
||||
|
||||
namespace juce
|
||||
|
|
|
|||
|
|
@ -31,10 +31,6 @@
|
|||
#error "Incorrect use of JUCE cpp file"
|
||||
#endif
|
||||
|
||||
// Your project must contain an AppConfig.h file with your project-specific settings in it,
|
||||
// and your header search path must make it accessible to the module's files.
|
||||
#include "AppConfig.h"
|
||||
|
||||
#include "../juce_core/native/juce_BasicNativeHeaders.h"
|
||||
#include "../juce_gui_extra/juce_gui_extra.h"
|
||||
#include "juce_video.h"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue