Allow full circle rotation with 2degs step for plantlike drawtype.
[oweals/minetest.git] / src / version.cpp
index e5de8a61edc29aa56b1e6910034d05a7dcf49887..83b0a4c40b349f899aba2e7c97c68c0688dc9677 100644 (file)
@@ -20,19 +20,15 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 #include "version.h"
 #include "config.h"
 
-#ifdef USE_CMAKE_CONFIG_H
-
-#include "cmake_config_githash.h"
-
 const char *minetest_version_simple = CMAKE_VERSION_STRING;
 const char *minetest_version_hash = CMAKE_VERSION_GITHASH;
+
+#ifdef USE_CMAKE_CONFIG_H
 const char *minetest_build_info =
                "VER=" CMAKE_VERSION_GITHASH " " CMAKE_BUILD_INFO;
-
+#elif defined(ANDROID)
+const char *minetest_build_info = "android jni";
 #else
-
-const char *minetest_version_simple = "unknown";
-const char *minetest_version_hash = "unknown";
 const char *minetest_build_info = "non-cmake";
 
 #endif