mirror of
https://github.com/minetest/minetestmapper.git
synced 2024-11-15 15:10:28 +01:00
16 lines
282 B
C
16 lines
282 B
C
#if MSDOS || __OS2__ || __NT__ || _WIN32
|
|
#define PATH_SEPARATOR '\\'
|
|
#else
|
|
#define PATH_SEPARATOR '/'
|
|
#endif
|
|
|
|
#ifdef USE_CMAKE_CONFIG_H
|
|
#include "cmake_config.h"
|
|
#else
|
|
#define USE_POSTGRESQL 0
|
|
#define USE_LEVELDB 0
|
|
#define USE_REDIS 0
|
|
|
|
#define SHAREDIR "/usr/share/minetest"
|
|
#endif
|