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

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

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

set(SRC generator_tool.cpp)

add_executable(${PROJECT_NAME} ${SRC})

omim_link_libraries(
  ${PROJECT_NAME}
  generator
  routing
  traffic
  routing_common
  search
  storage
  indexer
  editor
  platform
  geometry
  coding
  base
  opening_hours
  freetype
  expat
  fribidi
  jansson
  protobuf
  osrm
  stats_client
  minizip
  succinct
  pugixml
  tess2
  gflags
  oauthcpp
  ${LIBZ}
)

link_qt5_core(${PROJECT_NAME})