mirror of
https://github.com/moparisthebest/minetest
synced 2024-11-07 09:55:09 -05:00
12 lines
331 B
C
12 lines
331 B
C
// Filled in by the build system
|
|
|
|
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
#define INSTALL_PREFIX "@CMAKE_INSTALL_PREFIX@"
|
|
#define VERSION_STRING "@VERSION_MAJOR@.@VERSION_MINOR@.@VERSION_PATCH@"
|
|
#define BUILD_INFO "VER="VERSION_STRING" BUILD_DATE=@BUILD_DATE@ RUN_IN_PLACE=@RUN_IN_PLACE@ INSTALL_PREFIX=@CMAKE_INSTALL_PREFIX@"
|
|
|
|
#endif
|
|
|