]>
Commit | Line | Data |
---|---|---|
8ca704e1 | 1 | /* TargetConditionals.h |
d7384798 | 2 | Copyright (c) 2010-2014, Apple Inc. All rights reserved. |
8ca704e1 A |
3 | For CF on Linux ONLY |
4 | */ | |
5 | ||
6 | #ifndef __TARGETCONDITIONALS__ | |
7 | #define __TARGETCONDITIONALS__ | |
8 | ||
9 | #define TARGET_OS_MAC 0 | |
10 | #define TARGET_OS_WIN32 0 | |
11 | #define TARGET_OS_UNIX 0 | |
12 | #define TARGET_OS_EMBEDDED 0 | |
13 | #define TARGET_OS_IPHONE 0 | |
14 | #define TARGET_IPHONE_SIMULATOR 0 | |
15 | #define TARGET_OS_LINUX 1 | |
16 | ||
17 | #endif /* __TARGETCONDITIONALS__ */ |