Skip to content

Commit b9009a0

Browse files
committed
Fix paths to Base configurations
1 parent 5a6b7f3 commit b9009a0

File tree

1 file changed

+32
-32
lines changed

1 file changed

+32
-32
lines changed

ObjectiveGitFramework.xcodeproj/project.pbxproj

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -492,14 +492,14 @@
492492
D09C2E341755F16200065E36 /* GTSubmodule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GTSubmodule.h; sourceTree = "<group>"; };
493493
D09C2E351755F16200065E36 /* GTSubmodule.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GTSubmodule.m; sourceTree = "<group>"; };
494494
D09C2E50175602A500065E36 /* fixtures.zip */ = {isa = PBXFileReference; lastKnownFileType = archive.zip; name = fixtures.zip; path = fixtures/fixtures.zip; sourceTree = "<group>"; };
495+
D0A463D617E57C45000F5021 /* Common.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Common.xcconfig; sourceTree = "<group>"; };
496+
D0A463D817E57C45000F5021 /* Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = "<group>"; };
497+
D0A463D917E57C45000F5021 /* Profile.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Profile.xcconfig; sourceTree = "<group>"; };
498+
D0A463DA17E57C45000F5021 /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = "<group>"; };
499+
D0A463DB17E57C45000F5021 /* Test.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Test.xcconfig; sourceTree = "<group>"; };
500+
D0A463DD17E57C45000F5021 /* Application.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Application.xcconfig; sourceTree = "<group>"; };
501+
D0A463DE17E57C45000F5021 /* StaticLibrary.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = StaticLibrary.xcconfig; sourceTree = "<group>"; };
495502
D0AC906B172F941F00347DC4 /* GTRepositorySpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GTRepositorySpec.m; sourceTree = "<group>"; };
496-
D0D81859174421EB00995A2E /* Common.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Common.xcconfig; sourceTree = "<group>"; };
497-
D0D8185B174421EB00995A2E /* Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = "<group>"; };
498-
D0D8185C174421EB00995A2E /* Profile.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Profile.xcconfig; sourceTree = "<group>"; };
499-
D0D8185D174421EB00995A2E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = "<group>"; };
500-
D0D8185E174421EB00995A2E /* Test.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Test.xcconfig; sourceTree = "<group>"; };
501-
D0D81860174421EB00995A2E /* Application.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Application.xcconfig; sourceTree = "<group>"; };
502-
D0D81861174421EB00995A2E /* StaticLibrary.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = StaticLibrary.xcconfig; sourceTree = "<group>"; };
503503
D0D81863174421EB00995A2E /* iOS-Application.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "iOS-Application.xcconfig"; sourceTree = "<group>"; };
504504
D0D81864174421EB00995A2E /* iOS-Base.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "iOS-Base.xcconfig"; sourceTree = "<group>"; };
505505
D0D81865174421EB00995A2E /* iOS-StaticLibrary.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "iOS-StaticLibrary.xcconfig"; sourceTree = "<group>"; };
@@ -802,46 +802,46 @@
802802
path = Categories;
803803
sourceTree = "<group>";
804804
};
805-
D0D81857174421EB00995A2E /* Configuration */ = {
805+
D0A463D517E57C45000F5021 /* Base */ = {
806806
isa = PBXGroup;
807807
children = (
808-
D0D81858174421EB00995A2E /* Base */,
809-
D0D81862174421EB00995A2E /* iOS */,
810-
D0D81866174421EB00995A2E /* Mac OS X */,
811-
D0D8186C174421EB00995A2E /* README.md */,
808+
D0A463D617E57C45000F5021 /* Common.xcconfig */,
809+
D0A463D717E57C45000F5021 /* Configurations */,
810+
D0A463DC17E57C45000F5021 /* Targets */,
812811
);
813-
name = Configuration;
814-
path = External/Configuration;
812+
path = Base;
815813
sourceTree = "<group>";
816814
};
817-
D0D81858174421EB00995A2E /* Base */ = {
815+
D0A463D717E57C45000F5021 /* Configurations */ = {
818816
isa = PBXGroup;
819817
children = (
820-
D0D81859174421EB00995A2E /* Common.xcconfig */,
821-
D0D8185A174421EB00995A2E /* Configurations */,
822-
D0D8185F174421EB00995A2E /* Targets */,
818+
D0A463D817E57C45000F5021 /* Debug.xcconfig */,
819+
D0A463D917E57C45000F5021 /* Profile.xcconfig */,
820+
D0A463DA17E57C45000F5021 /* Release.xcconfig */,
821+
D0A463DB17E57C45000F5021 /* Test.xcconfig */,
823822
);
824-
path = Base;
823+
path = Configurations;
825824
sourceTree = "<group>";
826825
};
827-
D0D8185A174421EB00995A2E /* Configurations */ = {
826+
D0A463DC17E57C45000F5021 /* Targets */ = {
828827
isa = PBXGroup;
829828
children = (
830-
D0D8185B174421EB00995A2E /* Debug.xcconfig */,
831-
D0D8185C174421EB00995A2E /* Profile.xcconfig */,
832-
D0D8185D174421EB00995A2E /* Release.xcconfig */,
833-
D0D8185E174421EB00995A2E /* Test.xcconfig */,
829+
D0A463DD17E57C45000F5021 /* Application.xcconfig */,
830+
D0A463DE17E57C45000F5021 /* StaticLibrary.xcconfig */,
834831
);
835-
path = Configurations;
832+
path = Targets;
836833
sourceTree = "<group>";
837834
};
838-
D0D8185F174421EB00995A2E /* Targets */ = {
835+
D0D81857174421EB00995A2E /* Configuration */ = {
839836
isa = PBXGroup;
840837
children = (
841-
D0D81860174421EB00995A2E /* Application.xcconfig */,
842-
D0D81861174421EB00995A2E /* StaticLibrary.xcconfig */,
838+
D0A463D517E57C45000F5021 /* Base */,
839+
D0D81862174421EB00995A2E /* iOS */,
840+
D0D81866174421EB00995A2E /* Mac OS X */,
841+
D0D8186C174421EB00995A2E /* README.md */,
843842
);
844-
path = Targets;
843+
name = Configuration;
844+
path = External/Configuration;
845845
sourceTree = "<group>";
846846
};
847847
D0D81862174421EB00995A2E /* iOS */ = {
@@ -1497,7 +1497,7 @@
14971497
};
14981498
1DEB91B208733DA50010E9CD /* Debug */ = {
14991499
isa = XCBuildConfiguration;
1500-
baseConfigurationReference = D0D8185B174421EB00995A2E /* Debug.xcconfig */;
1500+
baseConfigurationReference = D0A463D817E57C45000F5021 /* Debug.xcconfig */;
15011501
buildSettings = {
15021502
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
15031503
GCC_STRICT_ALIASING = NO;
@@ -1512,7 +1512,7 @@
15121512
};
15131513
1DEB91B308733DA50010E9CD /* Release */ = {
15141514
isa = XCBuildConfiguration;
1515-
baseConfigurationReference = D0D8185D174421EB00995A2E /* Release.xcconfig */;
1515+
baseConfigurationReference = D0A463DA17E57C45000F5021 /* Release.xcconfig */;
15161516
buildSettings = {
15171517
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
15181518
GCC_STRICT_ALIASING = NO;
@@ -1611,7 +1611,7 @@
16111611
};
16121612
D03FC3D71602E97F00BCFA73 /* Profile */ = {
16131613
isa = XCBuildConfiguration;
1614-
baseConfigurationReference = D0D8185C174421EB00995A2E /* Profile.xcconfig */;
1614+
baseConfigurationReference = D0A463D917E57C45000F5021 /* Profile.xcconfig */;
16151615
buildSettings = {
16161616
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
16171617
GCC_STRICT_ALIASING = NO;

0 commit comments

Comments
 (0)