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

CMakeLists.txt « routing_tests « routing - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aa3d69e11e28ef9e2582e9e548b8739dc476148b (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
project(routing_tests)

set(
  SRC
  applying_traffic_test.cpp
  astar_algorithm_test.cpp
  astar_progress_test.cpp
  astar_router_test.cpp
  async_router_test.cpp
  checkpoint_predictor_test.cpp
  coding_test.cpp
  cross_mwm_connector_test.cpp
  cumulative_restriction_test.cpp
  fake_graph_test.cpp
  followed_polyline_test.cpp
  index_graph_test.cpp
  index_graph_tools.cpp
  index_graph_tools.hpp
  nearest_edge_finder_tests.cpp
  online_cross_fetcher_test.cpp
  restriction_test.cpp
  road_access_test.cpp
  road_graph_builder.cpp
  road_graph_builder.hpp
  road_graph_nearest_edges_test.cpp
  route_tests.cpp
  routing_helpers_tests.cpp
  routing_session_test.cpp
  turns_generator_test.cpp
  turns_sound_test.cpp
  turns_tts_text_tests.cpp
)

omim_add_test(${PROJECT_NAME} ${SRC})

omim_link_libraries(
  ${PROJECT_NAME}
  routing
  indexer
  platform_tests_support
  editor
  traffic
  routing_common
  transit
  platform
  oauthcpp
  geometry
  coding
  base
  protobuf
  succinct
  opening_hours
  jansson
  stats_client
  map
  pugixml
  stats_client
  icu
  agg
  ${LIBZ}
)

link_qt5_core(${PROJECT_NAME})