From 9fa9a1b656a7703c50a557a108c77b0c41ec53d5 Mon Sep 17 00:00:00 2001 From: Ilya Grechuhin Date: Mon, 10 Oct 2016 17:20:56 +0300 Subject: [PATCH] [ios] Fixed xc scheme build. --- xcode/drape/drape.xcodeproj/project.pbxproj | 8 ++++++++ .../drape_frontend.xcodeproj/project.pbxproj | 16 ++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/xcode/drape/drape.xcodeproj/project.pbxproj b/xcode/drape/drape.xcodeproj/project.pbxproj index bef188ffeb..a8ea6f92cb 100644 --- a/xcode/drape/drape.xcodeproj/project.pbxproj +++ b/xcode/drape/drape.xcodeproj/project.pbxproj @@ -10,6 +10,8 @@ 347F32F91C45383E009758CC /* debug_rect_renderer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 347F32F71C45383E009758CC /* debug_rect_renderer.cpp */; }; 347F32FA1C45383E009758CC /* debug_rect_renderer.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 347F32F81C45383E009758CC /* debug_rect_renderer.hpp */; }; 3492DA0B1CA2D91C00C1F3B3 /* visual_scale.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3492DA0A1CA2D91C00C1F3B3 /* visual_scale.hpp */; }; + 34C624C91DABDB2000510300 /* static_texture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 34C624C71DABDB2000510300 /* static_texture.cpp */; }; + 34C624CA1DABDB2000510300 /* static_texture.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 34C624C81DABDB2000510300 /* static_texture.hpp */; }; 45201E951CE605B1008A4842 /* constants.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 45201E941CE605B1008A4842 /* constants.hpp */; }; 670947231BDF9A4F005014C0 /* data_buffer_impl.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 670947151BDF9A4F005014C0 /* data_buffer_impl.hpp */; }; 670947251BDF9A4F005014C0 /* fribidi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 670947171BDF9A4F005014C0 /* fribidi.cpp */; }; @@ -124,6 +126,8 @@ 347F32F71C45383E009758CC /* debug_rect_renderer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = debug_rect_renderer.cpp; sourceTree = ""; }; 347F32F81C45383E009758CC /* debug_rect_renderer.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = debug_rect_renderer.hpp; sourceTree = ""; }; 3492DA0A1CA2D91C00C1F3B3 /* visual_scale.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = visual_scale.hpp; sourceTree = ""; }; + 34C624C71DABDB2000510300 /* static_texture.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = static_texture.cpp; sourceTree = ""; }; + 34C624C81DABDB2000510300 /* static_texture.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = static_texture.hpp; sourceTree = ""; }; 45201E941CE605B1008A4842 /* constants.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = constants.hpp; sourceTree = ""; }; 670947151BDF9A4F005014C0 /* data_buffer_impl.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = data_buffer_impl.hpp; sourceTree = ""; }; 670947171BDF9A4F005014C0 /* fribidi.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = fribidi.cpp; sourceTree = ""; }; @@ -266,6 +270,8 @@ 6729A4F31A691F6A007D5872 /* drape */ = { isa = PBXGroup; children = ( + 34C624C71DABDB2000510300 /* static_texture.cpp */, + 34C624C81DABDB2000510300 /* static_texture.hpp */, 3492DA0A1CA2D91C00C1F3B3 /* visual_scale.hpp */, 6743D3421C3533AE0095054B /* support_manager.cpp */, 6743D3431C3533AE0095054B /* support_manager.hpp */, @@ -450,6 +456,7 @@ 6709472E1BDF9A4F005014C0 /* index_storage.hpp in Headers */, 6729A5B51A69213A007D5872 /* vertex_array_buffer.hpp in Headers */, 6729A5A71A69213A007D5872 /* texture_manager.hpp in Headers */, + 34C624CA1DABDB2000510300 /* static_texture.hpp in Headers */, 6729A5901A69213A007D5872 /* object_pool.hpp in Headers */, 670947261BDF9A4F005014C0 /* fribidi.hpp in Headers */, 6729A5A11A69213A007D5872 /* shader.hpp in Headers */, @@ -538,6 +545,7 @@ 6729A58A1A69213A007D5872 /* gpu_program.cpp in Sources */, 6709472A1BDF9A4F005014C0 /* hw_texture_ios.mm in Sources */, 6729A57B1A69213A007D5872 /* glextensions_list.cpp in Sources */, + 34C624C91DABDB2000510300 /* static_texture.cpp in Sources */, 6729A5981A69213A007D5872 /* pointers.cpp in Sources */, 6729A5881A69213A007D5872 /* gpu_program_manager.cpp in Sources */, 6729A5A41A69213A007D5872 /* symbols_texture.cpp in Sources */, diff --git a/xcode/drape_frontend/drape_frontend.xcodeproj/project.pbxproj b/xcode/drape_frontend/drape_frontend.xcodeproj/project.pbxproj index 5e2b109399..22e9667df0 100644 --- a/xcode/drape_frontend/drape_frontend.xcodeproj/project.pbxproj +++ b/xcode/drape_frontend/drape_frontend.xcodeproj/project.pbxproj @@ -9,6 +9,10 @@ /* Begin PBXBuildFile section */ 3492DA0E1CA2D9BF00C1F3B3 /* animation_utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3492DA0C1CA2D9BF00C1F3B3 /* animation_utils.cpp */; }; 3492DA0F1CA2D9BF00C1F3B3 /* animation_utils.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3492DA0D1CA2D9BF00C1F3B3 /* animation_utils.hpp */; }; + 34C624C31DABDB0400510300 /* traffic_generator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 34C624BF1DABDB0400510300 /* traffic_generator.cpp */; }; + 34C624C41DABDB0400510300 /* traffic_generator.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 34C624C01DABDB0400510300 /* traffic_generator.hpp */; }; + 34C624C51DABDB0400510300 /* traffic_renderer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 34C624C11DABDB0400510300 /* traffic_renderer.cpp */; }; + 34C624C61DABDB0400510300 /* traffic_renderer.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 34C624C21DABDB0400510300 /* traffic_renderer.hpp */; }; 3D489BC51D3D21FC0052AA38 /* libdrape.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3D489BC41D3D21FC0052AA38 /* libdrape.a */; }; 452C9ED41CEDCF3200A55E57 /* animation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 452C9EC21CEDCF3200A55E57 /* animation.cpp */; }; 452C9ED51CEDCF3200A55E57 /* animation.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 452C9EC31CEDCF3200A55E57 /* animation.hpp */; }; @@ -207,6 +211,10 @@ /* Begin PBXFileReference section */ 3492DA0C1CA2D9BF00C1F3B3 /* animation_utils.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = animation_utils.cpp; sourceTree = ""; }; 3492DA0D1CA2D9BF00C1F3B3 /* animation_utils.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = animation_utils.hpp; sourceTree = ""; }; + 34C624BF1DABDB0400510300 /* traffic_generator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = traffic_generator.cpp; sourceTree = ""; }; + 34C624C01DABDB0400510300 /* traffic_generator.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = traffic_generator.hpp; sourceTree = ""; }; + 34C624C11DABDB0400510300 /* traffic_renderer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = traffic_renderer.cpp; sourceTree = ""; }; + 34C624C21DABDB0400510300 /* traffic_renderer.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = traffic_renderer.hpp; sourceTree = ""; }; 3D489BC41D3D21FC0052AA38 /* libdrape.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libdrape.a; path = "../../../omim-xcode-build/Debug/libdrape.a"; sourceTree = ""; }; 452C9EC21CEDCF3200A55E57 /* animation.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = animation.cpp; sourceTree = ""; }; 452C9EC31CEDCF3200A55E57 /* animation.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = animation.hpp; sourceTree = ""; }; @@ -438,6 +446,10 @@ 670947411BDF9B99005014C0 /* drape_frontend */ = { isa = PBXGroup; children = ( + 34C624BF1DABDB0400510300 /* traffic_generator.cpp */, + 34C624C01DABDB0400510300 /* traffic_generator.hpp */, + 34C624C11DABDB0400510300 /* traffic_renderer.cpp */, + 34C624C21DABDB0400510300 /* traffic_renderer.hpp */, 45B4B8C71CF5C16B00A54761 /* screen_animations.cpp */, 45B4B8C81CF5C16B00A54761 /* screen_animations.hpp */, 45B4B8C91CF5C16B00A54761 /* screen_operations.cpp */, @@ -694,6 +706,7 @@ 670947BC1BDF9BE1005014C0 /* route_shape.hpp in Headers */, F6B283121C1B04680081957A /* gps_track_renderer.hpp in Headers */, 670E393D1C46C59000E9C0A6 /* color_constants.hpp in Headers */, + 34C624C41DABDB0400510300 /* traffic_generator.hpp in Headers */, 670948721BDF9C7F005014C0 /* feature_styler.hpp in Headers */, 6709484E1BDF9C48005014C0 /* shape.hpp in Headers */, 452C9EE31CEDCF3200A55E57 /* scale_animation.hpp in Headers */, @@ -769,6 +782,7 @@ 670947A61BDF9BE1005014C0 /* my_position.hpp in Headers */, 675D21901BFB871D00717E4F /* software_renderer.hpp in Headers */, 670947A81BDF9BE1005014C0 /* navigator.hpp in Headers */, + 34C624C61DABDB0400510300 /* traffic_renderer.hpp in Headers */, 670947A21BDF9BE1005014C0 /* message.hpp in Headers */, 6709487B1BDF9C7F005014C0 /* path_info.hpp in Headers */, 6709486D1BDF9C7F005014C0 /* cpu_drawer.hpp in Headers */, @@ -880,7 +894,9 @@ 45B4B8CB1CF5C16B00A54761 /* screen_animations.cpp in Sources */, 6709483D1BDF9C48005014C0 /* copyright_label.cpp in Sources */, 670947C81BDF9BE1005014C0 /* text_shape.cpp in Sources */, + 34C624C31DABDB0400510300 /* traffic_generator.cpp in Sources */, 670947CC1BDF9BE1005014C0 /* tile_info.cpp in Sources */, + 34C624C51DABDB0400510300 /* traffic_renderer.cpp in Sources */, 670947961BDF9BE1005014C0 /* line_shape.cpp in Sources */, 670948681BDF9C7F005014C0 /* agg_curves.cpp in Sources */, 670947A91BDF9BE1005014C0 /* path_symbol_shape.cpp in Sources */,