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

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

set(
  SRC
  bindings.cpp
)

add_library(${PROJECT_NAME} MODULE ${SRC})

omim_link_libraries(
  ${PROJECT_NAME}
  ${PYTHON_LIBRARIES}
  ${Boost_LIBRARIES}
  kml
  indexer
  editor
  platform
  coding
  geometry
  base
  icu
  jansson
  protobuf
  pugixml
  expat
  stats_client
)

link_qt5_core(${PROJECT_NAME})

if (PLATFORM_MAC)
  omim_link_libraries(${PROJECT_NAME} ${LIBZ})
endif()

set_target_properties(${PROJECT_NAME} PROPERTIES PREFIX "")