Skip to content

Commit b282741

Browse files
authored
Merge pull request react-native-camera#1481 from react-native-community/fix/search-paths
fix(search-paths): remove unnecessary search paths and add missing one
2 parents aa0a8ad + dee298b commit b282741

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ios/RNCamera.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,7 @@
264264
FRAMEWORK_SEARCH_PATHS = (
265265
"$(SRCROOT)/../../../ios/**",
266266
"${BUILT_PRODUCTS_DIR}/**",
267+
"$(SRCROOT)/../../ios/**",
267268
);
268269
GCC_C_LANGUAGE_STANDARD = gnu99;
269270
GCC_DYNAMIC_NO_PIC = NO;
@@ -280,12 +281,11 @@
280281
GCC_WARN_UNUSED_FUNCTION = YES;
281282
GCC_WARN_UNUSED_VARIABLE = YES;
282283
HEADER_SEARCH_PATHS = (
283-
"$(SRCROOT)/../../../ios/**",
284284
"$(SRCROOT)/../../../React/**",
285285
"$(SRCROOT)/../../react-native/React/**",
286286
);
287287
IPHONEOS_DEPLOYMENT_TARGET = 8.2;
288-
LIBRARY_SEARCH_PATHS = "$(SRCROOT)/../../../ios/**";
288+
LIBRARY_SEARCH_PATHS = "";
289289
MTL_ENABLE_DEBUG_INFO = YES;
290290
ONLY_ACTIVE_ARCH = YES;
291291
OTHER_LDFLAGS = "-ObjC";
@@ -318,6 +318,7 @@
318318
FRAMEWORK_SEARCH_PATHS = (
319319
"$(SRCROOT)/../../../ios/**",
320320
"${BUILT_PRODUCTS_DIR}/**",
321+
"$(SRCROOT)/../../ios/**",
321322
);
322323
GCC_C_LANGUAGE_STANDARD = gnu99;
323324
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
@@ -327,12 +328,11 @@
327328
GCC_WARN_UNUSED_FUNCTION = YES;
328329
GCC_WARN_UNUSED_VARIABLE = YES;
329330
HEADER_SEARCH_PATHS = (
330-
"$(SRCROOT)/../../../ios/**",
331331
"$(SRCROOT)/../../../React/**",
332332
"$(SRCROOT)/../../react-native/React/**",
333333
);
334334
IPHONEOS_DEPLOYMENT_TARGET = 8.2;
335-
LIBRARY_SEARCH_PATHS = "$(SRCROOT)/../../../ios/**";
335+
LIBRARY_SEARCH_PATHS = "";
336336
MTL_ENABLE_DEBUG_INFO = NO;
337337
OTHER_LDFLAGS = "-ObjC";
338338
PRODUCT_NAME = "$(TARGET_NAME)";

0 commit comments

Comments
 (0)