geocore/platform/target_os.hpp
2019-10-14 18:28:29 +03:00

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