1/*	TargetConditionals.h
2	Copyright (c) 2010-2013, Apple Inc. All rights reserved.
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__ */
18