11 lines
285 B
C++
11 lines
285 B
C++
#pragma once
|
|
#pragma message("Using of this header means non portable code, fix it, or SUFFER")
|
|
|
|
#if defined(__APPLE__)
|
|
#include <TargetConditionals.h>
|
|
#define GEOCORE_OS_MAC
|
|
#define GEOCORE_OS_NAME "mac"
|
|
#else
|
|
#define GEOCORE_OS_LINUX
|
|
#define GEOCORE_OS_NAME "linux"
|
|
#endif
|