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

CMakeLists.txt « mapshot - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 06349fd13baeecb829f2010779b77223c14657bb (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
48
49
50
51
52
53
54
55
56
57
58
project(mapshot_tool)

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

set(
  SRC
  mapshot.cpp
)

omim_add_executable(${PROJECT_NAME} ${SRC})

omim_link_libraries(
  ${PROJECT_NAME}
  map
  software_renderer
  drape_frontend
  routing
  search
  storage
  tracking
  traffic
  routing_common
  ugc
  indexer
  drape
  partners_api
  local_ads
  kml
  platform
  editor
  geometry
  coding
  base
  freetype
  expat
  gflags
  icu
  agg
  jansson
  protobuf
  osrm
  stats_client
  minizip
  succinct
  pugixml
  oauthcpp
  opening_hours
  stb_image
  sdf_image
  ${LIBZ}
)

link_opengl(${PROJECT_NAME})
link_qt5_core(${PROJECT_NAME})