summaryrefslogtreecommitdiff
path: root/src/cmake_config.h.in
diff options
context:
space:
mode:
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2011-07-23 15:47:09 +0200
committerGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2011-07-24 09:18:29 +0200
commit4ffba76bb39363a01647acb19667cd33bbbd700b (patch)
tree762b06908d9168b27bd639112a3546981c9050c4 /src/cmake_config.h.in
parentf4a08f7fb3c9a249ad1256e2cf1a2e2ca3f2a709 (diff)
downloadminetest-4ffba76bb39363a01647acb19667cd33bbbd700b.tar.gz
minetest-4ffba76bb39363a01647acb19667cd33bbbd700b.tar.bz2
minetest-4ffba76bb39363a01647acb19667cd33bbbd700b.zip
Place project name and gettext use in config
Diffstat (limited to 'src/cmake_config.h.in')
-rw-r--r--src/cmake_config.h.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cmake_config.h.in b/src/cmake_config.h.in
index 5e375191f..6a8f93bac 100644
--- a/src/cmake_config.h.in
+++ b/src/cmake_config.h.in
@@ -3,6 +3,7 @@
#ifndef CMAKE_CONFIG_H
#define CMAKE_CONFIG_H
+#define PROJECT_NAME "@PROJECT_NAME@"
#define INSTALL_PREFIX "@CMAKE_INSTALL_PREFIX@"
#define VERSION_STRING "@VERSION_STRING@"
#ifdef NDEBUG
@@ -10,7 +11,7 @@
#else
#define BUILD_TYPE "Debug"
#endif
-#define BUILD_INFO "VER="VERSION_STRING" RUN_IN_PLACE=@RUN_IN_PLACE@ INSTALL_PREFIX=@CMAKE_INSTALL_PREFIX@ BUILD_TYPE="BUILD_TYPE
+#define BUILD_INFO "VER="VERSION_STRING" RUN_IN_PLACE=@RUN_IN_PLACE@ USE_GETTEXT=@USE_GETTEXT@ INSTALL_PREFIX=@CMAKE_INSTALL_PREFIX@ BUILD_TYPE="BUILD_TYPE
#endif