mirror of
https://github.com/moparisthebest/minetest
synced 2024-11-07 18:05:08 -05:00
17 lines
395 B
C
17 lines
395 B
C
// Filled in by the build system
|
|
|
|
#ifndef CMAKE_CONFIG_H
|
|
#define CMAKE_CONFIG_H
|
|
|
|
#define INSTALL_PREFIX "@CMAKE_INSTALL_PREFIX@"
|
|
#define VERSION_STRING "@VERSION_STRING@"
|
|
#ifdef NDEBUG
|
|
#define BUILD_TYPE "Release"
|
|
#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
|
|
|
|
#endif
|
|
|