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: 29797161bedaa6709fce307d5793e6e82c9bb960 (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
project(routing_tests)

include_directories(${OMIM_ROOT}/3party/osrm/osrm-backend/include)

set(
  SRC
  astar_algorithm_test.cpp
  astar_progress_test.cpp
  astar_router_test.cpp
  async_router_test.cpp
  cross_routing_tests.cpp
  followed_polyline_test.cpp
  nearest_edge_finder_tests.cpp
  online_cross_fetcher_test.cpp
  osrm_router_test.cpp
  road_graph_builder.cpp
  road_graph_builder.hpp
  road_graph_nearest_edges_test.cpp
  route_tests.cpp
  routing_mapping_test.cpp
  routing_session_test.cpp
  turns_generator_test.cpp
  turns_sound_test.cpp
  turns_tts_text_tests.cpp
  vehicle_model_test.cpp
)

omim_add_test(${PROJECT_NAME} ${SRC})

omim_link_libraries(
  ${PROJECT_NAME}
  routing
  indexer
  platform_tests_support
  editor
  platform
  oauthcpp
  geometry
  coding
  base
  osrm
  protobuf
  succinct
  opening_hours
  jansson
  stats_client
  map
  pugixml
  stats_client
  ${Qt5Core_LIBRARIES}
  ${LIBZ}
)