Add xcode support

This commit is contained in:
Mikhail Gorbushin 2019-04-30 17:48:02 +03:00 committed by Vladimir Byko-Ianko
parent a540d5791a
commit dcefe71c95
2 changed files with 21 additions and 0 deletions

View file

@ -78,6 +78,8 @@
3D74EF151F8B902C0081202C /* bwt.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3D74EF0F1F8B902C0081202C /* bwt.hpp */; };
3D7815731F3A145F0068B6AC /* task_loop.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3D7815711F3A145F0068B6AC /* task_loop.hpp */; };
3D78157B1F3D89EC0068B6AC /* waiter.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3D78157A1F3D89EC0068B6AC /* waiter.hpp */; };
4443DC322278977F000C8E32 /* not_intersecting_intervals_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4443DC312278977F000C8E32 /* not_intersecting_intervals_tests.cpp */; };
4443DC3422789787000C8E32 /* not_intersecting_intervals.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 4443DC3322789786000C8E32 /* not_intersecting_intervals.hpp */; };
564BB445206E89ED00BDD211 /* fifo_cache.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 564BB444206E89ED00BDD211 /* fifo_cache.hpp */; };
56B1A0741E69DE4D00395022 /* random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 56B1A0711E69DE4D00395022 /* random.cpp */; };
56B1A0751E69DE4D00395022 /* random.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 56B1A0721E69DE4D00395022 /* random.hpp */; };
@ -227,6 +229,8 @@
3D74EF0F1F8B902C0081202C /* bwt.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = bwt.hpp; sourceTree = "<group>"; };
3D7815711F3A145F0068B6AC /* task_loop.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = task_loop.hpp; sourceTree = "<group>"; };
3D78157A1F3D89EC0068B6AC /* waiter.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = waiter.hpp; sourceTree = "<group>"; };
4443DC312278977F000C8E32 /* not_intersecting_intervals_tests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = not_intersecting_intervals_tests.cpp; sourceTree = "<group>"; };
4443DC3322789786000C8E32 /* not_intersecting_intervals.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = not_intersecting_intervals.hpp; sourceTree = "<group>"; };
564BB444206E89ED00BDD211 /* fifo_cache.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = fifo_cache.hpp; sourceTree = "<group>"; };
564BB446206E8A4D00BDD211 /* fifo_cache_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = fifo_cache_test.cpp; sourceTree = "<group>"; };
56B1A0711E69DE4D00395022 /* random.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = random.cpp; sourceTree = "<group>"; };
@ -331,6 +335,7 @@
isa = PBXGroup;
children = (
390F1C0F2294299A00EA58E3 /* file_name_utils_tests.cpp */,
4443DC312278977F000C8E32 /* not_intersecting_intervals_tests.cpp */,
E1B7FFC521FA1A2100F094DC /* thread_pool_computational_tests.cpp */,
E1B7FFC621FA1A2200F094DC /* thread_pool_delayed_tests.cpp */,
39F1E53021C961B800D961DC /* beam_tests.cpp */,
@ -404,6 +409,7 @@
children = (
390F1C0C2294298E00EA58E3 /* file_name_utils.cpp */,
390F1C0B2294298E00EA58E3 /* file_name_utils.hpp */,
4443DC3322789786000C8E32 /* not_intersecting_intervals.hpp */,
E1B7FFBD21FA19FD00F094DC /* thread_pool_computational.hpp */,
E1B7FFC021FA19FE00F094DC /* thread_pool_delayed.cpp */,
E1B7FFBE21FA19FD00F094DC /* thread_pool_delayed.hpp */,
@ -593,6 +599,7 @@
3917FA5D211E00BB00937DF4 /* pprof.hpp in Headers */,
672DD4BE1E0425600078E13C /* cancellable.hpp in Headers */,
675341CB1A3F57E400A0A8C3 /* array_adapters.hpp in Headers */,
4443DC3422789787000C8E32 /* not_intersecting_intervals.hpp in Headers */,
3446C6751DDCA96300146687 /* uni_string_dfa.hpp in Headers */,
6753420B1A3F57E400A0A8C3 /* threaded_container.hpp in Headers */,
E1B7FFC321FA19FE00F094DC /* thread_utils.hpp in Headers */,
@ -665,6 +672,7 @@
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
English,
en,
Base,
);
@ -764,6 +772,7 @@
3D74EF131F8B902C0081202C /* move_to_front.cpp in Sources */,
675341CD1A3F57E400A0A8C3 /* base.cpp in Sources */,
675342011A3F57E400A0A8C3 /* string_utils.cpp in Sources */,
4443DC322278977F000C8E32 /* not_intersecting_intervals_tests.cpp in Sources */,
674A7E2E1C0DB03D003D48E1 /* timegm.cpp in Sources */,
E1B7FFC421FA19FE00F094DC /* thread_pool_delayed.cpp in Sources */,
6753420A1A3F57E400A0A8C3 /* threaded_container.cpp in Sources */,

View file

@ -82,6 +82,9 @@
4408A63D21F1E7F0008171B8 /* index_graph_starter_joints.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 4408A63921F1E7F0008171B8 /* index_graph_starter_joints.hpp */; };
4408A63E21F1E7F0008171B8 /* joint_segment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4408A63A21F1E7F0008171B8 /* joint_segment.cpp */; };
44183280222D45BB00C70BD9 /* routing_options_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4418327F222D45BB00C70BD9 /* routing_options_tests.cpp */; };
4443DC3722789793000C8E32 /* leaps_postprocessor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4443DC3522789793000C8E32 /* leaps_postprocessor.cpp */; };
4443DC3822789793000C8E32 /* leaps_postprocessor.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 4443DC3622789793000C8E32 /* leaps_postprocessor.hpp */; };
448FD3F3228B1BC500180D90 /* bfs_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 448FD3F2228B1BC500180D90 /* bfs_tests.cpp */; };
44A95C71225F6A4F00C22F4F /* astar_graph.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 44A95C6F225F6A4F00C22F4F /* astar_graph.hpp */; };
44A95C72225F6A4F00C22F4F /* astar_progress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 44A95C70225F6A4F00C22F4F /* astar_progress.cpp */; };
44AE4A12214FBB8E006321F5 /* speed_camera.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 44AE4A10214FBB8D006321F5 /* speed_camera.cpp */; };
@ -382,6 +385,9 @@
4408A63921F1E7F0008171B8 /* index_graph_starter_joints.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = index_graph_starter_joints.hpp; sourceTree = "<group>"; };
4408A63A21F1E7F0008171B8 /* joint_segment.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = joint_segment.cpp; sourceTree = "<group>"; };
4418327F222D45BB00C70BD9 /* routing_options_tests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = routing_options_tests.cpp; sourceTree = "<group>"; };
4443DC3522789793000C8E32 /* leaps_postprocessor.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = leaps_postprocessor.cpp; sourceTree = "<group>"; };
4443DC3622789793000C8E32 /* leaps_postprocessor.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = leaps_postprocessor.hpp; sourceTree = "<group>"; };
448FD3F2228B1BC500180D90 /* bfs_tests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = bfs_tests.cpp; sourceTree = "<group>"; };
44A95C6F225F6A4F00C22F4F /* astar_graph.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = astar_graph.hpp; path = base/astar_graph.hpp; sourceTree = "<group>"; };
44A95C70225F6A4F00C22F4F /* astar_progress.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = astar_progress.cpp; path = base/astar_progress.cpp; sourceTree = "<group>"; };
44AE4A10214FBB8D006321F5 /* speed_camera.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = speed_camera.cpp; sourceTree = "<group>"; };
@ -690,6 +696,7 @@
6742ACA01C68A07C009CB89E /* routing_tests */ = {
isa = PBXGroup;
children = (
448FD3F2228B1BC500180D90 /* bfs_tests.cpp */,
4418327F222D45BB00C70BD9 /* routing_options_tests.cpp */,
56A1B7A121A82BCB00246F8C /* maxspeeds_tests.cpp */,
44F45B272136B069001B1618 /* speed_cameras_tests.cpp */,
@ -825,6 +832,8 @@
675343FA1A3F640D00A0A8C3 /* routing */ = {
isa = PBXGroup;
children = (
4443DC3522789793000C8E32 /* leaps_postprocessor.cpp */,
4443DC3622789793000C8E32 /* leaps_postprocessor.hpp */,
44A95C6F225F6A4F00C22F4F /* astar_graph.hpp */,
44A95C70225F6A4F00C22F4F /* astar_progress.cpp */,
44C56C0922296498006C2A1D /* routing_options.cpp */,
@ -1065,6 +1074,7 @@
670D049F1B0B4A970013A7AC /* nearest_edge_finder.hpp in Headers */,
405F48E91F75231E005BA81A /* fake_graph.hpp in Headers */,
A120B34F1B4A7C0A002F3808 /* online_absent_fetcher.hpp in Headers */,
4443DC3822789793000C8E32 /* leaps_postprocessor.hpp in Headers */,
0C62BFE61E8ADC3100055A79 /* coding.hpp in Headers */,
674F9BD51B0A580E00704FFA /* road_graph.hpp in Headers */,
562BDE2020D14860008EFF6F /* routing_callbacks.hpp in Headers */,
@ -1315,6 +1325,7 @@
0C5F5D221E798B0400307B98 /* cross_mwm_connector.cpp in Sources */,
0C81E1531F02589800DC66DF /* traffic_stash.cpp in Sources */,
0CF5E8AA1E8EA7A1001ED497 /* coding_test.cpp in Sources */,
448FD3F3228B1BC500180D90 /* bfs_tests.cpp in Sources */,
40858A871F8CEAE60065CFF7 /* fake_feature_ids.cpp in Sources */,
40A111CD1F2F6776005E6AD5 /* route_weight.cpp in Sources */,
4408A63E21F1E7F0008171B8 /* joint_segment.cpp in Sources */,
@ -1363,6 +1374,7 @@
44F45B282136B069001B1618 /* speed_cameras_tests.cpp in Sources */,
67C7D42D1B4EB48F00FE41AA /* turns_sound_settings.cpp in Sources */,
40F7F3E51F7D246D0082D564 /* single_vehicle_world_graph.cpp in Sources */,
4443DC3722789793000C8E32 /* leaps_postprocessor.cpp in Sources */,
0C5FEC541DDE191E0017688C /* edge_estimator.cpp in Sources */,
5670595A1F3AF96D0062672D /* checkpoint_predictor_test.cpp in Sources */,
A120B34E1B4A7C0A002F3808 /* online_absent_fetcher.cpp in Sources */,