]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - src/config.h
Fix BSD iconv declaration
[dragonfireclient.git] / src / config.h
index 510c5ef1e3a93394dec5e90bcaff0acccb933b94..50e1184283368e1f32c2e173cfa96ec06ee5a038 100644 (file)
@@ -3,76 +3,24 @@
        Otherwise use default values
 */
 
-#ifndef CONFIG_H
-#define CONFIG_H
+#pragma once
 
-#define PROJECT_NAME "Minetest"
-#define RUN_IN_PLACE 0
-#define STATIC_SHAREDIR ""
+#define STRINGIFY(x) #x
+#define STR(x) STRINGIFY(x)
 
-#define USE_GETTEXT 0
 
-#ifndef USE_SOUND
-       #define USE_SOUND 0
-#endif
-
-#ifndef USE_CURL
-       #define USE_CURL 0
-#endif
-
-#ifndef USE_FREETYPE
-       #define USE_FREETYPE 0
-#endif
-
-#ifndef USE_LEVELDB
-       #define USE_LEVELDB 0
-#endif
-
-#ifndef USE_LUAJIT
-       #define USE_LUAJIT 0
-#endif
-
-#ifndef USE_REDIS
-       #define USE_REDIS 0
-#endif
-
-#ifdef USE_CMAKE_CONFIG_H
+#if defined USE_CMAKE_CONFIG_H
        #include "cmake_config.h"
-       #undef PROJECT_NAME
-       #define PROJECT_NAME CMAKE_PROJECT_NAME
-       #undef RUN_IN_PLACE
-       #define RUN_IN_PLACE CMAKE_RUN_IN_PLACE
-       #undef USE_GETTEXT
-       #define USE_GETTEXT CMAKE_USE_GETTEXT
-       #undef USE_SOUND
-       #define USE_SOUND CMAKE_USE_SOUND
-       #undef USE_CURL
-       #define USE_CURL CMAKE_USE_CURL
-       #undef USE_FREETYPE
-       #define USE_FREETYPE CMAKE_USE_FREETYPE
-       #undef STATIC_SHAREDIR
-       #define STATIC_SHAREDIR CMAKE_STATIC_SHAREDIR
-       #undef USE_LEVELDB
-       #define USE_LEVELDB CMAKE_USE_LEVELDB
-       #undef USE_LUAJIT
-       #define USE_LUAJIT CMAKE_USE_LUAJIT
-       #undef USE_REDIS
-       #define USE_REDIS CMAKE_USE_REDIS
-       #undef VERSION_MAJOR
-       #define VERSION_MAJOR CMAKE_VERSION_MAJOR
-       #undef VERSION_MINOR
-       #define VERSION_MINOR CMAKE_VERSION_MINOR
-       #undef VERSION_PATCH
-       #define VERSION_PATCH CMAKE_VERSION_PATCH
-       #undef VERSION_PATCH_ORIG
-       #define VERSION_PATCH_ORIG CMAKE_VERSION_PATCH_ORIG
-       #undef VERSION_STRING
-       #define VERSION_STRING CMAKE_VERSION_STRING
-       #undef PRODUCT_VERSION_STRING
-       #define PRODUCT_VERSION_STRING CMAKE_PRODUCT_VERSION_STRING
-       #undef VERSION_EXTRA_STRING
-       #define VERSION_EXTRA_STRING CMAKE_VERSION_EXTRA_STRING
+#else
+       #if defined (__ANDROID__)
+               #define PROJECT_NAME "minetest"
+               #define PROJECT_NAME_C "Minetest"
+               #define STATIC_SHAREDIR ""
+               #define VERSION_STRING STR(VERSION_MAJOR) "." STR(VERSION_MINOR) "." STR(VERSION_PATCH) STR(VERSION_EXTRA)
+       #endif
+       #ifdef NDEBUG
+               #define BUILD_TYPE "Release"
+       #else
+               #define BUILD_TYPE "Debug"
+       #endif
 #endif
-
-#endif
-