]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - src/version.cpp
Fix broken FPS/dtime counters in debug info
[dragonfireclient.git] / src / version.cpp
index ae5ca34125ffe49d2d9894018d390df2482d43f5..f2aac37dfb3235692e33db9611c951459f8ee6d5 100644 (file)
@@ -30,4 +30,16 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 
 const char *g_version_string = VERSION_STRING;
 const char *g_version_hash = VERSION_GITHASH;
-const char *g_build_info = BUILD_INFO;
+const char *g_build_info =
+       "BUILD_TYPE=" BUILD_TYPE "\n"
+       "RUN_IN_PLACE=" STR(RUN_IN_PLACE) "\n"
+       "USE_CURL=" STR(USE_CURL) "\n"
+#ifndef SERVER
+       "USE_GETTEXT=" STR(USE_GETTEXT) "\n"
+       "USE_SOUND=" STR(USE_SOUND) "\n"
+#endif
+       "STATIC_SHAREDIR=" STR(STATIC_SHAREDIR)
+#if USE_GETTEXT && defined(STATIC_LOCALEDIR)
+       "\n" "STATIC_LOCALEDIR=" STR(STATIC_LOCALEDIR)
+#endif
+;