Skip to content

Commit

Permalink
Merge pull request DylanVann#2 from OceanHorn/dev_new
Browse files Browse the repository at this point in the history
修改header search paths,增加react路径
  • Loading branch information
tianling536 committed Dec 15, 2017
2 parents b2ec093 + 0f89aca commit 8b6009e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ios/FastImage.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -401,6 +401,9 @@
isa = XCBuildConfiguration;
buildSettings = {
HEADER_SEARCH_PATHS = (
"$(SRCROOT)/../../react-native/React/**",
"$(SRCROOT)/../../../ios/Pods/Headers/Public/**",
"${SYMROOT}",
"$(SRCROOT)/Vendor/SDWebImage",
"$(SRCROOT)/Vendor/SDWebImage/Vendors/FLAnimatedImage/FLAnimatedImage",
"$(BUILT_PRODUCTS_DIR)",
Expand All @@ -415,6 +418,9 @@
isa = XCBuildConfiguration;
buildSettings = {
HEADER_SEARCH_PATHS = (
"$(SRCROOT)/../../react-native/React/**",
"$(SRCROOT)/../../../ios/Pods/Headers/Public/**",
"${SYMROOT}",
"$(SRCROOT)/Vendor/SDWebImage",
"$(SRCROOT)/Vendor/SDWebImage/Vendors/FLAnimatedImage/FLAnimatedImage",
"$(BUILT_PRODUCTS_DIR)",
Expand Down
6 changes: 6 additions & 0 deletions ios/FastImage/RCTConvert+FFFastImage.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
#if __has_include(<React/RCTConvert.h>)
#import <React/RCTConvert.h>
#elif __has_include("React/RCTConvert.h")
#import "React/RCTConvert.h"
#else
#import "RCTConvert.h"
#endif

@class FFFastImageSource;

Expand Down

0 comments on commit 8b6009e

Please sign in to comment.