2011-11-30 22:42:40 +01:00
|
|
|
//
|
|
|
|
// Prefix header for all source files of the 'Pearl' target in the 'Pearl' project
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifdef __OBJC__
|
2013-04-20 14:11:19 -04:00
|
|
|
#import <Foundation/Foundation.h>
|
2011-11-30 22:42:40 +01:00
|
|
|
|
2012-08-31 16:30:05 +02:00
|
|
|
#define PEARL_WITH_MESSAGEUI
|
2012-02-13 10:27:08 +01:00
|
|
|
|
2011-11-30 22:42:40 +01:00
|
|
|
#define PEARL
|
|
|
|
#define PEARL_CRYPTO
|
2017-04-12 23:41:17 -04:00
|
|
|
#if TARGET_OS_IOS
|
2011-11-30 22:42:40 +01:00
|
|
|
#define PEARL_UIKIT
|
2017-04-12 23:41:17 -04:00
|
|
|
#elif TARGET_OS_OSX
|
2014-12-29 16:35:23 -05:00
|
|
|
#define PEARL_COCOA
|
|
|
|
#endif
|
2011-11-30 22:42:40 +01:00
|
|
|
|
|
|
|
#import "Pearl.h"
|
|
|
|
#import "Pearl-Crypto.h"
|
2017-04-12 23:41:17 -04:00
|
|
|
#if TARGET_OS_IOS
|
2012-03-04 15:31:26 +01:00
|
|
|
#import "Pearl-UIKit.h"
|
2017-04-12 23:41:17 -04:00
|
|
|
#elif TARGET_OS_OSX
|
2014-12-29 16:35:23 -05:00
|
|
|
#import "Pearl-Cocoa.h"
|
|
|
|
#endif
|
2014-12-18 17:47:38 -05:00
|
|
|
#endif
|