-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MobileCoreServices,MobileIcons] Add modulemap (#98)
* Add module.modulemap for MobileIcons * Add module.modulemap for MobileCoreServices
- Loading branch information
1 parent
322c069
commit 1435844
Showing
3 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#import <MobileCoreServices/LSAppLink.h> | ||
#import <MobileCoreServices/LSApplicationProxy.h> | ||
#import <MobileCoreServices/LSApplicationWorkspace.h> | ||
#import <MobileCoreServices/LSBundleProxy.h> | ||
#import <MobileCoreServices/LSDocumentProxy.h> | ||
#import <MobileCoreServices/LSOpenOperation.h> | ||
#import <MobileCoreServices/LSPlugInKitProxy.h> | ||
#import <MobileCoreServices/LSResourceProxy.h> | ||
#import <MobileCoreServices/NSString+LSAdditions.h> | ||
#import <MobileCoreServices/NSURL+LSAdditions.h> | ||
#import <MobileCoreServices/_LSQueryResult.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
module MobileCoreServices { | ||
umbrella header "MobileCoreServices.h" | ||
|
||
link framework "MobileCoreServices" | ||
|
||
export * | ||
module * { export * } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
module MobileIcons { | ||
umbrella header "MobileIcons.h" | ||
|
||
link framework "MobileIcons" | ||
|
||
export * | ||
module * { export * } | ||
} |