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

CMakeLists.txt « routing_integration_tests « routing - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0d656f8bd7afcb7ac5e0168c2594f1c042cf8159 (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
# This subproject implements integration tests.
# This tests are launched on the whole world dataset.

# It is recommended to place tests here in the following cases:
# - tests are written to be launch on the whole world dataset;
# - tests covers significant number of subsystems;

project(routing_integration_tests)

set(
  SRC
  bicycle_route_test.cpp
  bicycle_turn_test.cpp
  get_altitude_test.cpp
  online_cross_tests.cpp
  pedestrian_route_test.cpp
  road_graph_tests.cpp
  route_test.cpp
  routing_test_tools.cpp
  routing_test_tools.hpp
  street_names_test.cpp
  turn_test.cpp
)

omim_add_test(${PROJECT_NAME} ${SRC})

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

link_qt5_core(${PROJECT_NAME})
link_qt5_network(${PROJECT_NAME})