mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00
Add ability to build pod as a framework
This commit is contained in:
parent
a719de2397
commit
d4a7444e37
28
cocoapods/libxlsxwriter-umbrella.h
Normal file
28
cocoapods/libxlsxwriter-umbrella.h
Normal file
@ -0,0 +1,28 @@
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
#import "../xlsxwriter.h"
|
||||
#import "app.h"
|
||||
#import "chart.h"
|
||||
#import "common.h"
|
||||
#import "content_types.h"
|
||||
#import "core.h"
|
||||
#import "drawing.h"
|
||||
#import "format.h"
|
||||
#import "hash_table.h"
|
||||
#import "packager.h"
|
||||
#import "relationships.h"
|
||||
#import "shared_strings.h"
|
||||
#import "styles.h"
|
||||
#import "theme.h"
|
||||
#import "third_party/minizip/ioapi.h"
|
||||
#import "third_party/minizip/zip.h"
|
||||
#import "third_party/queue.h"
|
||||
#import "third_party/tree.h"
|
||||
#import "utility.h"
|
||||
#import "workbook.h"
|
||||
#import "worksheet.h"
|
||||
#import "xmlwriter.h"
|
||||
|
||||
FOUNDATION_EXPORT double xlsxwriterVersionNumber;
|
||||
FOUNDATION_EXPORT const unsigned char xlsxwriterVersionString[];
|
||||
|
7
cocoapods/libxlsxwriter.modulemap
Normal file
7
cocoapods/libxlsxwriter.modulemap
Normal file
@ -0,0 +1,7 @@
|
||||
framework module xlsxwriter {
|
||||
umbrella header "libxlsxwriter-umbrella.h"
|
||||
header "../xlsxwriter.h"
|
||||
|
||||
export *
|
||||
module * { export * }
|
||||
}
|
@ -38,4 +38,9 @@ Pod::Spec.new do |s|
|
||||
s.header_mappings_dir = "include/xlsxwriter"
|
||||
s.library = "z"
|
||||
s.compiler_flags = "-DNOCRYPT=1", "-DNOUNCRYPT=1"
|
||||
s.pod_target_xcconfig = { 'USER_HEADER_SEARCH_PATHS' => '${PODS_ROOT}/libxlsxwriter/include' }
|
||||
s.module_map = "cocoapods/libxlsxwriter.modulemap"
|
||||
s.prepare_command = <<-CMD
|
||||
cp cocoapods/libxlsxwriter-umbrella.h include/xlsxwriter/libxlsxwriter-umbrella.h
|
||||
CMD
|
||||
end
|
||||
|
Loading…
x
Reference in New Issue
Block a user