Fixed Xcode project after boxes adding

This commit is contained in:
r.kuznetsov 2017-09-22 14:18:32 +03:00 committed by Yuri Gorshenin
parent ff84731e11
commit ae8dc1ef20

View file

@ -10,12 +10,23 @@
344A713C1F3DA07000B8DDB8 /* nearby_points_sweeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 344A713A1F3DA07000B8DDB8 /* nearby_points_sweeper.cpp */; };
344A713D1F3DA07000B8DDB8 /* nearby_points_sweeper.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 344A713B1F3DA07000B8DDB8 /* nearby_points_sweeper.hpp */; };
344A71411F3DA08300B8DDB8 /* nearby_points_sweeper_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 344A713E1F3DA08300B8DDB8 /* nearby_points_sweeper_test.cpp */; };
344A71421F3DA08300B8DDB8 /* clipping_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 344A713F1F3DA08300B8DDB8 /* clipping_test.cpp */; };
344A71431F3DA08300B8DDB8 /* algorithm_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 344A71401F3DA08300B8DDB8 /* algorithm_test.cpp */; };
345C55F51C93140A00B6783F /* clipping.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 345C55F31C93140A00B6783F /* clipping.cpp */; };
345C55F61C93140A00B6783F /* clipping.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 345C55F41C93140A00B6783F /* clipping.hpp */; };
347F33701C454205009758CC /* triangle2d.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 347F336E1C454205009758CC /* triangle2d.cpp */; };
347F33711C454205009758CC /* triangle2d.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 347F336F1C454205009758CC /* triangle2d.hpp */; };
45A2D9BE1F7526E6003310A0 /* bounding_box.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45A2D9B71F7526E6003310A0 /* bounding_box.cpp */; };
45A2D9BF1F7526E6003310A0 /* bounding_box.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 45A2D9B81F7526E6003310A0 /* bounding_box.hpp */; };
45A2D9C01F7526E6003310A0 /* calipers_box.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45A2D9B91F7526E6003310A0 /* calipers_box.cpp */; };
45A2D9C11F7526E6003310A0 /* calipers_box.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 45A2D9BA1F7526E6003310A0 /* calipers_box.hpp */; };
45A2D9C21F7526E6003310A0 /* convex_hull.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45A2D9BB1F7526E6003310A0 /* convex_hull.cpp */; };
45A2D9C31F7526E6003310A0 /* convex_hull.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 45A2D9BC1F7526E6003310A0 /* convex_hull.hpp */; };
45A2D9C41F7526E6003310A0 /* line2d.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45A2D9BD1F7526E6003310A0 /* line2d.cpp */; };
45A2D9CD1F752707003310A0 /* bounding_box_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45A2D9C51F7526FE003310A0 /* bounding_box_tests.cpp */; };
45A2D9CE1F75270A003310A0 /* calipers_box_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45A2D9C61F7526FE003310A0 /* calipers_box_tests.cpp */; };
45A2D9CF1F75270D003310A0 /* diamond_box_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45A2D9C71F7526FE003310A0 /* diamond_box_tests.cpp */; };
45A2D9D01F752710003310A0 /* line2d_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45A2D9C81F7526FE003310A0 /* line2d_tests.cpp */; };
45A2D9D11F752717003310A0 /* algorithm_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 344A71401F3DA08300B8DDB8 /* algorithm_test.cpp */; };
45A2D9D21F752727003310A0 /* clipping_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 344A713F1F3DA08300B8DDB8 /* clipping_test.cpp */; };
56D5456A1C74A46D00E3719C /* algorithm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 56D545681C74A46D00E3719C /* algorithm.cpp */; };
56D5456B1C74A46D00E3719C /* algorithm.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 56D545691C74A46D00E3719C /* algorithm.hpp */; };
56EB1ED01C6B6DF30022D831 /* segment2d.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 56EB1ECE1C6B6DF30022D831 /* segment2d.cpp */; };
@ -113,6 +124,17 @@
347F336F1C454205009758CC /* triangle2d.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = triangle2d.hpp; sourceTree = "<group>"; };
34AF87CD1DBE517700E5E7DC /* common-debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "common-debug.xcconfig"; path = "../common-debug.xcconfig"; sourceTree = "<group>"; };
34AF87CE1DBE517700E5E7DC /* common-release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "common-release.xcconfig"; path = "../common-release.xcconfig"; sourceTree = "<group>"; };
45A2D9B71F7526E6003310A0 /* bounding_box.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = bounding_box.cpp; sourceTree = "<group>"; };
45A2D9B81F7526E6003310A0 /* bounding_box.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = bounding_box.hpp; sourceTree = "<group>"; };
45A2D9B91F7526E6003310A0 /* calipers_box.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = calipers_box.cpp; sourceTree = "<group>"; };
45A2D9BA1F7526E6003310A0 /* calipers_box.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = calipers_box.hpp; sourceTree = "<group>"; };
45A2D9BB1F7526E6003310A0 /* convex_hull.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = convex_hull.cpp; sourceTree = "<group>"; };
45A2D9BC1F7526E6003310A0 /* convex_hull.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = convex_hull.hpp; sourceTree = "<group>"; };
45A2D9BD1F7526E6003310A0 /* line2d.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = line2d.cpp; sourceTree = "<group>"; };
45A2D9C51F7526FE003310A0 /* bounding_box_tests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = bounding_box_tests.cpp; sourceTree = "<group>"; };
45A2D9C61F7526FE003310A0 /* calipers_box_tests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = calipers_box_tests.cpp; sourceTree = "<group>"; };
45A2D9C71F7526FE003310A0 /* diamond_box_tests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = diamond_box_tests.cpp; sourceTree = "<group>"; };
45A2D9C81F7526FE003310A0 /* line2d_tests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = line2d_tests.cpp; sourceTree = "<group>"; };
56D545681C74A46D00E3719C /* algorithm.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = algorithm.cpp; sourceTree = "<group>"; };
56D545691C74A46D00E3719C /* algorithm.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = algorithm.hpp; sourceTree = "<group>"; };
56EB1ECE1C6B6DF30022D831 /* segment2d.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = segment2d.cpp; sourceTree = "<group>"; };
@ -211,6 +233,10 @@
670F29211BA9D25D00F2ABF4 /* geometry_tests */ = {
isa = PBXGroup;
children = (
45A2D9C51F7526FE003310A0 /* bounding_box_tests.cpp */,
45A2D9C61F7526FE003310A0 /* calipers_box_tests.cpp */,
45A2D9C71F7526FE003310A0 /* diamond_box_tests.cpp */,
45A2D9C81F7526FE003310A0 /* line2d_tests.cpp */,
344A71401F3DA08300B8DDB8 /* algorithm_test.cpp */,
670F29221BA9D2E700F2ABF4 /* angle_test.cpp */,
670F29231BA9D2E700F2ABF4 /* anyrect_test.cpp */,
@ -281,6 +307,13 @@
675344931A3F684600A0A8C3 /* geometry */ = {
isa = PBXGroup;
children = (
45A2D9B71F7526E6003310A0 /* bounding_box.cpp */,
45A2D9B81F7526E6003310A0 /* bounding_box.hpp */,
45A2D9B91F7526E6003310A0 /* calipers_box.cpp */,
45A2D9BA1F7526E6003310A0 /* calipers_box.hpp */,
45A2D9BB1F7526E6003310A0 /* convex_hull.cpp */,
45A2D9BC1F7526E6003310A0 /* convex_hull.hpp */,
45A2D9BD1F7526E6003310A0 /* line2d.cpp */,
56D545681C74A46D00E3719C /* algorithm.cpp */,
56D545691C74A46D00E3719C /* algorithm.hpp */,
6753449F1A3F687400A0A8C3 /* angles.cpp */,
@ -350,6 +383,7 @@
675344E01A3F68F900A0A8C3 /* boost_concept.hpp in Headers */,
344A713D1F3DA07000B8DDB8 /* nearby_points_sweeper.hpp in Headers */,
675344C01A3F687400A0A8C3 /* cellid.hpp in Headers */,
45A2D9BF1F7526E6003310A0 /* bounding_box.hpp in Headers */,
675344CB1A3F687400A0A8C3 /* polyline2d.hpp in Headers */,
56EB1ED11C6B6DF30022D831 /* segment2d.hpp in Headers */,
675344D21A3F687400A0A8C3 /* screenbase.hpp in Headers */,
@ -361,6 +395,7 @@
675344CC1A3F687400A0A8C3 /* rect_intersect.hpp in Headers */,
675344C71A3F687400A0A8C3 /* packer.hpp in Headers */,
675344C41A3F687400A0A8C3 /* distance_on_sphere.hpp in Headers */,
45A2D9C11F7526E6003310A0 /* calipers_box.hpp in Headers */,
675344CA1A3F687400A0A8C3 /* polygon.hpp in Headers */,
675344C11A3F687400A0A8C3 /* covering_utils.hpp in Headers */,
675344C51A3F687400A0A8C3 /* distance.hpp in Headers */,
@ -376,6 +411,7 @@
6741AAA11BF35476002C974C /* latlon.hpp in Headers */,
675344D51A3F687400A0A8C3 /* spline.hpp in Headers */,
675344DF1A3F68F900A0A8C3 /* binary_operators.hpp in Headers */,
45A2D9C31F7526E6003310A0 /* convex_hull.hpp in Headers */,
675344D61A3F687400A0A8C3 /* transformations.hpp in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
@ -457,11 +493,15 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
45A2D9CD1F752707003310A0 /* bounding_box_tests.cpp in Sources */,
670F29911BAABDA600F2ABF4 /* point_test.cpp in Sources */,
670F29941BAABDA600F2ABF4 /* rect_test.cpp in Sources */,
670F299A1BAABDA600F2ABF4 /* simplification_test.cpp in Sources */,
670F298A1BAABDA600F2ABF4 /* common_test.cpp in Sources */,
670F298D1BAABDA600F2ABF4 /* distance_test.cpp in Sources */,
45A2D9CE1F75270A003310A0 /* calipers_box_tests.cpp in Sources */,
45A2D9D11F752717003310A0 /* algorithm_test.cpp in Sources */,
45A2D9CF1F75270D003310A0 /* diamond_box_tests.cpp in Sources */,
670F299B1BAABDA600F2ABF4 /* spline_test.cpp in Sources */,
670F299C1BAABDA600F2ABF4 /* transformations_test.cpp in Sources */,
670F29951BAABDA600F2ABF4 /* region_test.cpp in Sources */,
@ -471,6 +511,7 @@
670F299D1BAABDA600F2ABF4 /* tree_test.cpp in Sources */,
670F29871BAABDA600F2ABF4 /* angle_test.cpp in Sources */,
670F29991BAABDA600F2ABF4 /* segments_intersect_test.cpp in Sources */,
45A2D9D01F752710003310A0 /* line2d_tests.cpp in Sources */,
670F299E1BAABDA600F2ABF4 /* vector_test.cpp in Sources */,
670F296A1BA9D3C200F2ABF4 /* equality.hpp in Sources */,
670F296C1BA9D3C200F2ABF4 /* large_polygon.hpp in Sources */,
@ -485,6 +526,7 @@
670F29931BAABDA600F2ABF4 /* polygon_test.cpp in Sources */,
670F298C1BAABDA600F2ABF4 /* distance_on_sphere_test.cpp in Sources */,
670F297A1BA9D3C200F2ABF4 /* test_regions.hpp in Sources */,
45A2D9D21F752727003310A0 /* clipping_test.cpp in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@ -493,12 +535,14 @@
buildActionMask = 2147483647;
files = (
675344C31A3F687400A0A8C3 /* distance_on_sphere.cpp in Sources */,
344A71431F3DA08300B8DDB8 /* algorithm_test.cpp in Sources */,
675344CF1A3F687400A0A8C3 /* robust_orientation.cpp in Sources */,
56D5456A1C74A46D00E3719C /* algorithm.cpp in Sources */,
675344D41A3F687400A0A8C3 /* spline.cpp in Sources */,
45A2D9C41F7526E6003310A0 /* line2d.cpp in Sources */,
675344D11A3F687400A0A8C3 /* screenbase.cpp in Sources */,
45A2D9BE1F7526E6003310A0 /* bounding_box.cpp in Sources */,
344A71411F3DA08300B8DDB8 /* nearby_points_sweeper_test.cpp in Sources */,
45A2D9C01F7526E6003310A0 /* calipers_box.cpp in Sources */,
344A713C1F3DA07000B8DDB8 /* nearby_points_sweeper.cpp in Sources */,
347F33701C454205009758CC /* triangle2d.cpp in Sources */,
675344BC1A3F687400A0A8C3 /* angles.cpp in Sources */,
@ -508,8 +552,8 @@
675344C61A3F687400A0A8C3 /* packer.cpp in Sources */,
675344DE1A3F68F900A0A8C3 /* binary_operators.cpp in Sources */,
56EB1ED01C6B6DF30022D831 /* segment2d.cpp in Sources */,
45A2D9C21F7526E6003310A0 /* convex_hull.cpp in Sources */,
345C55F51C93140A00B6783F /* clipping.cpp in Sources */,
344A71421F3DA08300B8DDB8 /* clipping_test.cpp in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};