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

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

project(routing_consistency_tests)

include_directories(${OMIM_ROOT}/3party/gflags/src)

set(
  SRC
  ../routing_integration_tests/routing_test_tools.cpp
  routing_consistency_tests.cpp
)

# Not using omim_add_test because we don't need testingmain.cpp
omim_add_executable(${PROJECT_NAME} ${SRC})

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

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