Loading...
Searching...
No Matches
6#define TAZ_PLATFORM_WINDOWS
9#error "x86 Builds are not supported!"
11#elif defined(__APPLE__) || defined(__MACH__)
12#include <TargetConditionals.h>
17#if TARGET_IPHONE_SIMULATOR == 1
18#error "IOS simulator is not supported!"
19#elif TARGET_OS_IPHONE == 1
20#define TAZ_PLATFORM_IOS
21#error "IOS is not supported!"
22#elif TARGET_OS_MAC == 1
23#define TAZ_PLATFORM_MACOS
24#error "MacOS is not supported!"
26#error "Unknown Apple platform!"
31#elif defined(__ANDROID__)
32#define TAZ_PLATFORM_ANDROID
33#error "Android is not supported!"
34#elif defined(__linux__)
35#define TAZ_PLATFORM_LINUX
38#error "Unknown platform!"