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

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

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

set(
  SRC
  openlr_stat.cpp
)

add_executable(${PROJECT_NAME} ${SRC})
omim_link_libraries(${PROJECT_NAME}
  openlr
  routing
  routing_common
  indexer
  editor
  platform
  geometry
  coding
  base
  gflags
  icu
  jansson
  oauthcpp
  opening_hours
  protobuf
  pugixml
  stats_client
  ${Qt5Core_LIBRARIES}
  ${LIBZ}
)