forked from BlocksKit/BlocksKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModule-iOS.modulemap
More file actions
47 lines (40 loc) · 985 Bytes
/
Module-iOS.modulemap
File metadata and controls
47 lines (40 loc) · 985 Bytes
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
43
44
45
46
47
framework module BlocksKit {
umbrella header "BlocksKit.h"
requires objc
module Dynamic {
header "A2BlockInvocation.h"
header "A2DynamicDelegate.h"
header "NSObject+A2BlockDelegate.h"
header "NSObject+A2DynamicDelegate.h"
link framework "Foundation"
module Foundation {
// if we get any more than two this should become an umbrella
header "NSCache+BlocksKit.h"
header "NSURLConnection+BlocksKit.h"
link framework "Foundation"
export Dynamic
export *
}
module MessageUI {
header "BlocksKit+MessageUI.h"
link framework "MessageUI"
export Dynamic
export *
}
module QuickLook {
header "BlocksKit+QuickLook.h"
link framework "QuickLook"
export Dynamic
export *
}
module UIKit {
header "BlocksKit+UIKit.h"
link framework "UIKit"
export Dynamic
export *
}
export Foundation
}
export *
module * { export * }
}