mirror of
https://github.com/minetest/minetestmapper.git
synced 2024-11-11 04:50:38 +01:00
23 lines
506 B
C
23 lines
506 B
C
/*
|
|
* =====================================================================
|
|
* Version: 1.0
|
|
* Created: 01.09.2012 12:58:02
|
|
* Author: Miroslav Bendík
|
|
* Company: LinuxOS.sk
|
|
* =====================================================================
|
|
*/
|
|
|
|
#if MSDOS || __OS2__ || __NT__ || _WIN32
|
|
#define PATH_SEPARATOR '\\'
|
|
#else
|
|
#define PATH_SEPARATOR '/'
|
|
#endif
|
|
|
|
#define BLOCK_SIZE 16
|
|
|
|
#ifdef USE_CMAKE_CONFIG_H
|
|
#include "cmake_config.h"
|
|
#else
|
|
#define USE_LEVELDB 0
|
|
#endif
|