forked from theos/theos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPrefix.pch
42 lines (35 loc) · 764 Bytes
/
Prefix.pch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#ifdef DEBUG
#define __DEBUG__
#endif
#ifdef __OBJC__
#import <_Prefix/NullabilityCompat.h>
#if __has_feature(modules)
@import Foundation;
#else
#import <Foundation/Foundation.h>
#endif
#ifdef TARGET_OS_SIMULATOR
#define _THEOS_IS_SIMULATOR TARGET_OS_SIMULATOR
#else
#define _THEOS_IS_SIMULATOR TARGET_IPHONE_SIMULATOR
#endif
#if TARGET_IPHONE || _THEOS_IS_SIMULATOR
#if __has_feature(modules)
@import UIKit;
#else
#import <UIKit/UIKit.h>
#endif
#import <_Prefix/IOSWebKitCompatHacks.h>
#endif
#if TARGET_MACOSX
#if __has_feature(modules)
@import Cocoa;
@import AppKit;
#else
#import <Cocoa/Cocoa.h>
#import <AppKit/AppKit.h>
#endif
#endif
#import <_Prefix/HBLog.h>
#import <_Prefix/IOSMacros.h>
#endif