mirror of
https://github.com/moparisthebest/minetest
synced 2024-11-07 09:55:09 -05:00
19 lines
493 B
C
19 lines
493 B
C
// Filled in by the build system
|
|
|
|
#ifndef CMAKE_CONFIG_H
|
|
#define CMAKE_CONFIG_H
|
|
|
|
#define PROJECT_NAME "@PROJECT_NAME@"
|
|
#define INSTALL_PREFIX "@CMAKE_INSTALL_PREFIX@"
|
|
#define VERSION_STRING "@VERSION_STRING@"
|
|
#define USE_GETTEXT @USE_GETTEXT@
|
|
#ifdef NDEBUG
|
|
#define BUILD_TYPE "Release"
|
|
#else
|
|
#define BUILD_TYPE "Debug"
|
|
#endif
|
|
#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
|
|
|