fix osx module warning

This commit is contained in:
Jack Flintermann 2015-09-15 19:42:02 -04:00
parent 7e25dd858a
commit d2fd794d42
3 changed files with 9 additions and 0 deletions

View File

@ -351,6 +351,7 @@
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
0401C6E61BA8E3C300CE8A6D /* module.modulemap */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.module-map"; name = module.modulemap; path = Stripe/module.modulemap; sourceTree = SOURCE_ROOT; };
042CA1B31B7BD84100AF0DA6 /* stp_card_placeholder_template.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = stp_card_placeholder_template.png; sourceTree = "<group>"; };
042CA1B41B7BD84100AF0DA6 /* stp_card_placeholder_template@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "stp_card_placeholder_template@2x.png"; sourceTree = "<group>"; };
042CA1B51B7BD84100AF0DA6 /* stp_card_placeholder_template@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "stp_card_placeholder_template@3x.png"; sourceTree = "<group>"; };
@ -679,6 +680,7 @@
04F39F091AEF2AFE005B926E /* BuildConfigurations */ = {
isa = PBXGroup;
children = (
0401C6E61BA8E3C300CE8A6D /* module.modulemap */,
04F39F0C1AEF2AFE005B926E /* Project-Shared.xcconfig */,
04F39F0A1AEF2AFE005B926E /* Project-Debug.xcconfig */,
04F39F0B1AEF2AFE005B926E /* Project-Release.xcconfig */,

View File

@ -47,6 +47,8 @@ CURRENT_PROJECT_VERSION = 1
DEFINES_MODULE = YES
MODULEMAP_FILE = Stripe/module.modulemap
// Compatibility Version
//

5
Stripe/module.modulemap Normal file
View File

@ -0,0 +1,5 @@
framework module Stripe {
umbrella header "Stripe.h"
export *
module * { export * }
}