Support external config flags

This commit is contained in:
Ray 2019-03-12 16:00:26 +01:00
parent 76e968f6b7
commit 477ea4d660
4 changed files with 25 additions and 3 deletions

View file

@ -30,9 +30,13 @@
*
**********************************************************************************************/
#include "config.h"
#include "raylib.h" // WARNING: Required for: LogType enum
// Check if config flags have been externally provided on compilation line
#if !defined(EXTERNAL_CONFIG_FLAGS)
#include "config.h" // Defines module configuration flags
#endif
#include "utils.h"
#if defined(PLATFORM_ANDROID)