26 lines
435 B
Plaintext
26 lines
435 B
Plaintext
//
|
|
// Prefix header for all source files of the 'Pearl' target in the 'Pearl' project
|
|
//
|
|
|
|
#ifdef __OBJC__
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#define PEARL_WITH_MESSAGEUI
|
|
|
|
#define PEARL
|
|
#define PEARL_CRYPTO
|
|
#if TARGET_OS_IOS
|
|
#define PEARL_UIKIT
|
|
#elif TARGET_OS_OSX
|
|
#define PEARL_COCOA
|
|
#endif
|
|
|
|
#import "Pearl.h"
|
|
#import "Pearl-Crypto.h"
|
|
#if TARGET_OS_IOS
|
|
#import "Pearl-UIKit.h"
|
|
#elif TARGET_OS_OSX
|
|
#import "Pearl-Cocoa.h"
|
|
#endif
|
|
#endif
|