summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/config.h16
1 files changed, 6 insertions, 10 deletions
diff --git a/src/config.h b/src/config.h
index 8d920b150..50e118428 100644
--- a/src/config.h
+++ b/src/config.h
@@ -11,17 +11,13 @@
#if defined USE_CMAKE_CONFIG_H
#include "cmake_config.h"
-#elif 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)
- #ifdef NDEBUG
- #define BUILD_TYPE "Release"
- #else
- #define BUILD_TYPE "Debug"
- #endif
#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