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

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

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

set(SRC feature_list.cpp)

omim_add_executable(${PROJECT_NAME} ${SRC})

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

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