From 3e73f5015f6674750e240b5b06843dfcc3986402 Mon Sep 17 00:00:00 2001 From: szymonrybczak Date: Sat, 20 Jul 2024 20:05:49 +0200 Subject: [PATCH] chore: update `project.pbxproj` --- .gitignore | 4 ++++ example/ios/AiExample.xcodeproj/project.pbxproj | 12 ++++++++++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index d3b53df..f9d1f3b 100644 --- a/.gitignore +++ b/.gitignore @@ -76,3 +76,7 @@ android/keystores/debug.keystore # generated by bob lib/ + +# other + +dist/ \ No newline at end of file diff --git a/example/ios/AiExample.xcodeproj/project.pbxproj b/example/ios/AiExample.xcodeproj/project.pbxproj index 48dff90..4288423 100644 --- a/example/ios/AiExample.xcodeproj/project.pbxproj +++ b/example/ios/AiExample.xcodeproj/project.pbxproj @@ -480,6 +480,7 @@ "@executable_path/Frameworks", ); LIBRARY_SEARCH_PATHS = ( + "$(SDKROOT)/usr/lib/swift", "$(inherited)", "\"${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion\"", "\"${PODS_CONFIGURATION_BUILD_DIR}/RCT-Folly\"", @@ -564,6 +565,7 @@ "@executable_path/Frameworks", ); LIBRARY_SEARCH_PATHS = ( + "$(SDKROOT)/usr/lib/swift", "$(inherited)", "\"${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion\"", "\"${PODS_CONFIGURATION_BUILD_DIR}/RCT-Folly\"", @@ -706,7 +708,10 @@ "-DFOLLY_CFG_NO_COROUTINES=1", "-DFOLLY_HAVE_CLOCK_GETTIME=1", ); - OTHER_LDFLAGS = "$(inherited) "; + OTHER_LDFLAGS = ( + "$(inherited)", + " ", + ); REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native"; SDKROOT = iphoneos; USE_HERMES = true; @@ -778,7 +783,10 @@ "-DFOLLY_CFG_NO_COROUTINES=1", "-DFOLLY_HAVE_CLOCK_GETTIME=1", ); - OTHER_LDFLAGS = "$(inherited) "; + OTHER_LDFLAGS = ( + "$(inherited)", + " ", + ); REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native"; SDKROOT = iphoneos; USE_HERMES = true;