Skip to content

Commit

Permalink
[MobileCoreServices,MobileIcons] Add modulemap (#98)
Browse files Browse the repository at this point in the history
* Add module.modulemap for MobileIcons

* Add module.modulemap for MobileCoreServices
  • Loading branch information
leptos-null authored Oct 30, 2024
1 parent 322c069 commit 1435844
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
11 changes: 11 additions & 0 deletions MobileCoreServices/MobileCoreServices.h
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>
8 changes: 8 additions & 0 deletions MobileCoreServices/module.modulemap
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 * }
}
8 changes: 8 additions & 0 deletions MobileIcons/module.modulemap
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 * }
}

0 comments on commit 1435844

Please sign in to comment.