mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2025-02-04 19:04:08 +00:00
38 lines
1.2 KiB
C
38 lines
1.2 KiB
C
#ifndef __AQUARIA_COMPILE_CONFIG_H__
|
|
#define __AQUARIA_COMPILE_CONFIG_H__
|
|
|
|
// The settings below are also configurable with CMake.
|
|
// Define BBGE_SKIP_CONFIG_HEADERS to use CMake-only configuration.
|
|
#ifndef BBGE_SKIP_CONFIG_HEADERS
|
|
|
|
//#define AQUARIA_DEMO 1
|
|
#define AQUARIA_BUILD_CONSOLE 1
|
|
#define AQUARIA_BUILD_SCENEEDITOR 1
|
|
|
|
#define AQUARIA_CUSTOM_BUILD_ID (" Build " __DATE__ " - " __TIME__)
|
|
|
|
// If defined, this is shown instead of "Aquaria vx.x.x ..." on the title screen.
|
|
//#define AQUARIA_OVERRIDE_VERSION_STRING "Aquaria OSE v1.001"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Not CMake-configurable defines, change at your own risk
|
|
|
|
// Should stay always defined; this tracks visited map areas
|
|
#define AQUARIA_BUILD_MAPVIS
|
|
|
|
// Define this to save map visited data in a base64-encoded raw format.
|
|
// This can take much less space than the standard text format (as little
|
|
// as 10%), but WILL BE INCOMPATIBLE with previous builds of Aquaria --
|
|
// the visited data will be lost if the file is loaded into such a build.
|
|
// (Current builds will load either format regardless of whether or not
|
|
// this is defined.)
|
|
//#define AQUARIA_SAVE_MAPVIS_RAW
|
|
|
|
// Interesting, old test stuff
|
|
//#define AQ_TEST_QUADTRAIL
|
|
|
|
|
|
#endif //__AQUARIA_COMPILE_CONFIG_H__
|