Skip to content

Commit 0540361

Browse files
authored
Add Firebase Source to Header Search Path (#2114)
This resolves the annoying Xcode errors that claim `FIRAppInternal.h` can't be found. It also makes it *much* easier to "Jump to definition" now.
1 parent 16af0f1 commit 0540361

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

Example/Firebase.xcodeproj/project.pbxproj

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5023,7 +5023,6 @@
50235023
6003F5BD195388D20070C39A /* Debug */ = {
50245024
isa = XCBuildConfiguration;
50255025
buildSettings = {
5026-
ALWAYS_SEARCH_USER_PATHS = NO;
50275026
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
50285027
CLANG_CXX_LIBRARY = "libc++";
50295028
CLANG_ENABLE_MODULES = YES;
@@ -5057,6 +5056,13 @@
50575056
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
50585057
GCC_WARN_UNUSED_FUNCTION = YES;
50595058
GCC_WARN_UNUSED_VARIABLE = YES;
5059+
HEADER_SEARCH_PATHS = (
5060+
"$(SRC_ROOT)/../Firebase/**",
5061+
"$(SRC_ROOT)/../Firestore/**",
5062+
"$(SRC_ROOT)/../Functions/**",
5063+
"$(SRC_ROOT)/../GoogleUtilities/**",
5064+
"$(SRC_ROOT)/../Interop/**",
5065+
);
50605066
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
50615067
MACOSX_DEPLOYMENT_TARGET = 10.10;
50625068
ONLY_ACTIVE_ARCH = YES;
@@ -5068,7 +5074,6 @@
50685074
6003F5BE195388D20070C39A /* Release */ = {
50695075
isa = XCBuildConfiguration;
50705076
buildSettings = {
5071-
ALWAYS_SEARCH_USER_PATHS = NO;
50725077
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
50735078
CLANG_CXX_LIBRARY = "libc++";
50745079
CLANG_ENABLE_MODULES = YES;
@@ -5095,6 +5100,13 @@
50955100
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
50965101
GCC_WARN_UNUSED_FUNCTION = YES;
50975102
GCC_WARN_UNUSED_VARIABLE = YES;
5103+
HEADER_SEARCH_PATHS = (
5104+
"$(SRC_ROOT)/../Firebase/**",
5105+
"$(SRC_ROOT)/../Firestore/**",
5106+
"$(SRC_ROOT)/../Functions/**",
5107+
"$(SRC_ROOT)/../GoogleUtilities/**",
5108+
"$(SRC_ROOT)/../Interop/**",
5109+
);
50985110
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
50995111
MACOSX_DEPLOYMENT_TARGET = 10.10;
51005112
SDKROOT = iphoneos;

0 commit comments

Comments
 (0)