minetestmapper/include/config.h

16 lines
282 B
C
Raw Normal View History

2012-09-01 13:01:31 +02:00
#if MSDOS || __OS2__ || __NT__ || _WIN32
#define PATH_SEPARATOR '\\'
#else
#define PATH_SEPARATOR '/'
#endif
2012-09-01 14:36:14 +02:00
2014-03-05 21:41:27 +01:00
#ifdef USE_CMAKE_CONFIG_H
#include "cmake_config.h"
#else
2017-01-08 23:24:09 +01:00
#define USE_POSTGRESQL 0
2014-03-05 21:41:27 +01:00
#define USE_LEVELDB 0
2014-08-02 16:30:52 +02:00
#define USE_REDIS 0
#define SHAREDIR "/usr/share/minetest"
2014-03-05 21:41:27 +01:00
#endif