minetest/src/cmake_config.h.in

17 lines
395 B
C
Raw Normal View History

2011-01-08 16:35:41 +01:00
// Filled in by the build system
#ifndef CMAKE_CONFIG_H
#define CMAKE_CONFIG_H
2011-01-08 16:35:41 +01:00
#define INSTALL_PREFIX "@CMAKE_INSTALL_PREFIX@"
2011-01-08 23:49:32 +01:00
#define VERSION_STRING "@VERSION_STRING@"
#ifdef NDEBUG
#define BUILD_TYPE "Release"
#else
#define BUILD_TYPE "Debug"
#endif
2011-04-06 10:34:41 +02:00
#define BUILD_INFO "VER="VERSION_STRING" RUN_IN_PLACE=@RUN_IN_PLACE@ INSTALL_PREFIX=@CMAKE_INSTALL_PREFIX@ BUILD_TYPE="BUILD_TYPE
2011-01-08 16:35:41 +01:00
#endif