]> git.lizzy.rs Git - dragonfireclient.git/blob - src/config.h
Clean up EmergeManager, do initial work on Mapgen configuration
[dragonfireclient.git] / src / config.h
1 /*
2         If CMake is used, includes the cmake-generated cmake_config.h.
3         Otherwise use default values
4 */
5
6 #ifndef CONFIG_H
7 #define CONFIG_H
8
9 #define PROJECT_NAME "Minetest"
10 #define VERSION_STRING "unknown"
11 #define RUN_IN_PLACE 0
12 #define USE_GETTEXT 0
13 #define USE_SOUND 0
14 #define USE_CURL 0
15 #define STATIC_SHAREDIR ""
16 #define BUILD_INFO "non-cmake"
17
18 #ifdef USE_CMAKE_CONFIG_H
19         #include "cmake_config.h"
20         #undef PROJECT_NAME
21         #define PROJECT_NAME CMAKE_PROJECT_NAME
22         #undef VERSION_STRING
23         #define VERSION_STRING CMAKE_VERSION_STRING
24         #undef RUN_IN_PLACE
25         #define RUN_IN_PLACE CMAKE_RUN_IN_PLACE
26         #undef USE_GETTEXT
27         #define USE_GETTEXT CMAKE_USE_GETTEXT
28         #undef USE_SOUND
29         #define USE_SOUND CMAKE_USE_SOUND
30         #undef USE_CURL
31         #define USE_CURL CMAKE_USE_CURL
32         #undef STATIC_SHAREDIR
33         #define STATIC_SHAREDIR CMAKE_STATIC_SHAREDIR
34         #undef BUILD_INFO
35         #define BUILD_INFO CMAKE_BUILD_INFO
36 #endif
37
38 #endif
39