18 lines
358 B
C
18 lines
358 B
C
// Filled in by the build system
|
|
|
|
#ifndef CMAKE_CONFIG_H
|
|
#define CMAKE_CONFIG_H
|
|
|
|
#define USE_SQLITE3 @USE_SQLITE3@
|
|
#define USE_LEVELDB @USE_LEVELDB@
|
|
#define USE_REDIS @USE_REDIS@
|
|
|
|
#define VERSION_MAJOR "@VERSION_MAJOR@"
|
|
#define VERSION_MINOR "@VERSION_MINOR@"
|
|
|
|
#define PACKAGING_FLAT @PACKAGING_FLAT@
|
|
#define INSTALL_PREFIX "@CMAKE_INSTALL_PREFIX@"
|
|
|
|
#endif
|
|
|