hrnt@0: #ifndef @PROJECT_SHORT_NAME@_CONFIG_H hrnt@0: #define @PROJECT_SHORT_NAME@_CONFIG_H hrnt@0: hrnt@0: /* Note: CMake autogenerates build/src/config.h from src/config.h.in */ hrnt@0: /* #include "config.h" to use the generated file */ hrnt@0: hrnt@0: #define PROJECT_DATA_DIR "@PROJECT_DATA_DIR@" hrnt@0: #define PROJECT_SHORT_NAME "@PROJECT_SHORT_NAME@" hrnt@0: #define PROJECT_LONG_NAME "@PROJECT_LONG_NAME@" terom@397: terom@397: /* terom@397: * Defined in version.c: terom@397: */ terom@397: extern const char *PROJECT_VERSION, *PROJECT_BUILD_TIMESTAMP; hrnt@0: terom@417: /** terom@432: * Debug options terom@432: * terom@432: * * Default log level is DEBUG instead of INFO terom@432: */ terom@433: #define DEBUG_ENABLED @DEBUG_ENABLED@ terom@432: terom@432: /** terom@417: * Provide possibility to compile without graphics code. terom@417: * terom@417: * Defined as a boolean value (so use #if GRAPHICS_ENABLED / if (GRAPHICS_ENABLED) ) terom@417: */ terom@417: #define GRAPHICS_ENABLED @GRAPHICS_ENABLED@ terom@417: terom@417: /** terom@417: * Provide possibility to compile without network code. terom@417: */ terom@417: #define NETWORK_ENABLED @NETWORK_ENABLED@ terom@417: hrnt@0: #endif hrnt@0: