1 #ifndef __AQUARIA_COMPILE_CONFIG_H__
2 #define __AQUARIA_COMPILE_CONFIG_H__
3 
4 // The settings below are also configurable with CMake.
5 // Define BBGE_SKIP_CONFIG_HEADERS to use CMake-only configuration.
6 #ifndef BBGE_SKIP_CONFIG_HEADERS
7 
8     //#define AQUARIA_DEMO 1
9     #define AQUARIA_BUILD_CONSOLE 1
10     #define AQUARIA_BUILD_SCENEEDITOR 1
11 
12     #define AQUARIA_CUSTOM_BUILD_ID (" Build " __DATE__ " - " __TIME__)
13 
14     // If defined, this is shown instead of "Aquaria vx.x.x ..." on the title screen.
15     //#define AQUARIA_OVERRIDE_VERSION_STRING "Aquaria OSE v1.001"
16 
17 #endif
18 
19 
20 
21 // Not CMake-configurable defines, change at your own risk
22 
23 // Should stay always defined; this tracks visited map areas
24 #define AQUARIA_BUILD_MAPVIS
25 
26 // Define this to save map visited data in a base64-encoded raw format.
27 // This can take much less space than the standard text format (as little
28 // as 10%), but WILL BE INCOMPATIBLE with previous builds of Aquaria --
29 // the visited data will be lost if the file is loaded into such a build.
30 // (Current builds will load either format regardless of whether or not
31 // this is defined.)
32 //#define AQUARIA_SAVE_MAPVIS_RAW
33 
34 // Interesting, old test stuff
35 //#define AQ_TEST_QUADTRAIL
36 
37 
38 #endif //__AQUARIA_COMPILE_CONFIG_H__
39