Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CMakeLists.txt « map - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e89a3f48e79cdcf6be01d6a14061df34dc4ec58d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
project(map)

include_directories(
  ${OMIM_ROOT}/3party/protobuf/protobuf/src
  ${OMIM_ROOT}/3party/freetype/include
  ${OMIM_ROOT}/3party/jansson/src
  ${OMIM_ROOT}/3party/glm
)

set(
  SRC
  ../api/src/c/api-client.c
  api_mark_point.cpp
  api_mark_point.hpp
  benchmark_tools.hpp
  benchmark_tools.cpp
  booking_availability_filter.cpp
  booking_availability_filter.hpp
  booking_filter.hpp
  booking_filter_cache.cpp
  booking_filter_cache.hpp
  booking_filter_params.hpp
  booking_filter_processor.cpp
  booking_filter_processor.hpp
  bookmark.cpp
  bookmark.hpp
  bookmark_catalog.cpp
  bookmark_catalog.hpp
  bookmark_helpers.cpp
  bookmark_helpers.hpp
  bookmark_manager.cpp
  bookmark_manager.hpp
  bookmarks_search_params.hpp
  caching_address_getter.hpp
  chart_generator.cpp
  chart_generator.hpp
  cloud.cpp
  cloud.hpp
  discovery/discovery_client_params.hpp
  discovery/discovery_manager.cpp
  discovery/discovery_manager.hpp
  discovery/discovery_search.cpp
  discovery/discovery_search.hpp
  discovery/discovery_search_params.hpp
  displacement_mode_manager.cpp
  displacement_mode_manager.hpp
  displayed_categories_modifiers.cpp
  displayed_categories_modifiers.hpp
  everywhere_search_callback.cpp
  everywhere_search_callback.hpp
  everywhere_search_params.hpp
  extrapolation/extrapolator.cpp
  extrapolation/extrapolator.hpp
  feature_vec_model.cpp
  feature_vec_model.hpp
  framework.cpp
  framework.hpp
  framework_light.cpp
  framework_light.hpp
  framework_light_delegate.hpp
  ge0_parser.cpp
  ge0_parser.hpp
  geourl_process.cpp
  geourl_process.hpp
  gps_track_collection.cpp
  gps_track_collection.hpp
  gps_track_filter.cpp
  gps_track_filter.hpp
  gps_track_storage.cpp
  gps_track_storage.hpp
  gps_track.cpp
  gps_track.hpp
  gps_tracker.cpp
  gps_tracker.hpp
  local_ads_manager.cpp
  local_ads_manager.hpp
  local_ads_mark.cpp
  local_ads_mark.hpp
  local_ads_supported_types.cpp
  mwm_url.cpp
  mwm_url.hpp
  notifications/notification_manager.cpp
  notifications/notification_manager.hpp
  notifications/notification_manager_delegate.cpp
  notifications/notification_manager_delegate.hpp
  notifications/notification_queue.cpp
  notifications/notification_queue.hpp
  notifications/notification_queue_serdes.cpp
  notifications/notification_queue_serdes.hpp
  notifications/notification_queue_storage.cpp
  notifications/notification_queue_storage.hpp
  place_page_info.cpp
  place_page_info.hpp
  power_management/power_manager.cpp
  power_management/power_manager.hpp
  power_management/power_management_schemas.cpp
  power_management/power_management_schemas.hpp
  purchase.cpp
  purchase.hpp
  reachable_by_taxi_checker.cpp
  reachable_by_taxi_checker.hpp
  routing_manager.cpp
  routing_manager.hpp
  routing_mark.cpp
  routing_mark.hpp
  search_api.cpp
  search_api.hpp
  search_mark.cpp
  search_mark.hpp
  search_product_info.hpp
  taxi_delegate.cpp
  taxi_delegate.hpp
  tips_api.cpp
  tips_api.hpp
  track.cpp
  track.hpp
  traffic_manager.cpp
  traffic_manager.hpp
  transit/transit_display.cpp
  transit/transit_display.hpp
  transit/transit_reader.cpp
  transit/transit_reader.hpp
  user.cpp
  user.hpp
  user_mark_id_storage.cpp
  user_mark_id_storage.hpp
  user_mark_layer.cpp
  user_mark_layer.hpp
  user_mark.cpp
  user_mark.hpp
  utils.cpp
  utils.hpp
  viewport_search_params.hpp
  viewport_search_callback.cpp
  viewport_search_callback.hpp
)

omim_add_library(${PROJECT_NAME} ${SRC})

omim_add_test_subdirectory(map_integration_tests)
omim_add_test_subdirectory(map_tests)
omim_add_test_subdirectory(mwm_tests)
omim_add_test_subdirectory(style_tests)

if (PLATFORM_DESKTOP)
  add_subdirectory(benchmark_tool)
  add_subdirectory(extrapolation_benchmark)
endif()