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: 34dcc61bffbfe350e4fd2ebf11ce06dfaa5c84a8 (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
project(openlr_stat)

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

set(
  SRC
  openlr_stat.cpp
)

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