mirror of
https://github.com/moparisthebest/minetest
synced 2024-11-10 19:35:12 -05:00
40 lines
894 B
C
40 lines
894 B
C
/*
|
|
If CMake is used, includes the cmake-generated cmake_config.h.
|
|
Otherwise use default values
|
|
*/
|
|
|
|
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
#define PROJECT_NAME "Minetest"
|
|
#define VERSION_STRING "unknown"
|
|
#define RUN_IN_PLACE 0
|
|
#define USE_GETTEXT 0
|
|
#define USE_SOUND 0
|
|
#define USE_CURL 0
|
|
#define STATIC_SHAREDIR ""
|
|
#define BUILD_INFO "non-cmake"
|
|
|
|
#ifdef USE_CMAKE_CONFIG_H
|
|
#include "cmake_config.h"
|
|
#undef PROJECT_NAME
|
|
#define PROJECT_NAME CMAKE_PROJECT_NAME
|
|
#undef VERSION_STRING
|
|
#define VERSION_STRING CMAKE_VERSION_STRING
|
|
#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 STATIC_SHAREDIR
|
|
#define STATIC_SHAREDIR CMAKE_STATIC_SHAREDIR
|
|
#undef BUILD_INFO
|
|
#define BUILD_INFO CMAKE_BUILD_INFO
|
|
#endif
|
|
|
|
#endif
|
|
|