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

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

set(
  SRC
  ../routing_integration_tests/routing_test_tools.cpp
  ../routing_integration_tests/routing_test_tools.hpp
  bicycle_routing_tests.cpp
  helpers.cpp
  helpers.hpp
  pedestrian_routing_tests.cpp
)

omim_add_test(${PROJECT_NAME} ${SRC})

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

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