Commit dba4ca2c authored by Libin Lu's avatar Libin Lu Committed by GitHub

Merge pull request #612 from douglasjunior/patch-2

Added search path for "ios/Frameworks" to allow build without cocoapods.
parents 6d4b2970 49566a2b
...@@ -219,12 +219,14 @@ ...@@ -219,12 +219,14 @@
FRAMEWORK_SEARCH_PATHS = ( FRAMEWORK_SEARCH_PATHS = (
"$(inherited)", "$(inherited)",
"$(PROJECT_DIR)/../../../ios/Pods/**", "$(PROJECT_DIR)/../../../ios/Pods/**",
"$(PROJECT_DIR)/../../../ios/Frameworks/**",
"$(SRCROOT)/../../../node_modules/react-native-firestack/ios/**", "$(SRCROOT)/../../../node_modules/react-native-firestack/ios/**",
); );
GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)"; GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)";
HEADER_SEARCH_PATHS = ( HEADER_SEARCH_PATHS = (
"$(SRCROOT)/../../react-native/React/**", "$(SRCROOT)/../../react-native/React/**",
"$(PROJECT_DIR)/../../../ios/Pods/**", "$(PROJECT_DIR)/../../../ios/Pods/**",
"$(PROJECT_DIR)/../../../ios/Frameworks/**",
"$(SRCROOT)/../../../node_modules/react-native-firestack/ios/**", "$(SRCROOT)/../../../node_modules/react-native-firestack/ios/**",
); );
LIBRARY_SEARCH_PATHS = "$(inherited)"; LIBRARY_SEARCH_PATHS = "$(inherited)";
...@@ -243,11 +245,13 @@ ...@@ -243,11 +245,13 @@
FRAMEWORK_SEARCH_PATHS = ( FRAMEWORK_SEARCH_PATHS = (
"$(inherited)", "$(inherited)",
"$(PROJECT_DIR)/../../../ios/Pods/**", "$(PROJECT_DIR)/../../../ios/Pods/**",
"$(PROJECT_DIR)/../../../ios/Frameworks/**",
"$(SRCROOT)/../../../node_modules/react-native-firestack/ios/**", "$(SRCROOT)/../../../node_modules/react-native-firestack/ios/**",
); );
HEADER_SEARCH_PATHS = ( HEADER_SEARCH_PATHS = (
"$(SRCROOT)/../../react-native/React/**", "$(SRCROOT)/../../react-native/React/**",
"$(PROJECT_DIR)/../../../ios/Pods/**", "$(PROJECT_DIR)/../../../ios/Pods/**",
"$(PROJECT_DIR)/../../../ios/Frameworks/**",
"$(SRCROOT)/../../../node_modules/react-native-firestack/ios/**", "$(SRCROOT)/../../../node_modules/react-native-firestack/ios/**",
); );
LIBRARY_SEARCH_PATHS = "$(inherited)"; LIBRARY_SEARCH_PATHS = "$(inherited)";
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment