 |
Plasma Engine
2.0
|
Loading...
Searching...
No Matches
3#if defined(_WINDOWS) || defined(_WIN32)
4# undef PL_PLATFORM_WINDOWS
5# define PL_PLATFORM_WINDOWS PL_ON
9#elif defined(__APPLE__) && defined(__MACH__)
10# include <TargetConditionals.h>
12# if TARGET_OS_MAC == 1
13# undef PL_PLATFORM_OSX
14# define PL_PLATFORM_OSX PL_ON
15# elif TARGET_OS_IPHONE == 1 || TARGET_IPHONE_SIMULATOR == 1
16# undef PL_PLATFORM_IOS
17# define PL_PLATFORM_IOS PL_ON
22# undef PL_PLATFORM_ANDROID
23# define PL_PLATFORM_ANDROID PL_ON
27# undef PL_PLATFORM_LINUX
28# define PL_PLATFORM_LINUX PL_ON
34# error "Unknown Platform."