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

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

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

set(
  SRC
  api.cpp
  api.hpp
  binary/header_v0.hpp
  binary/index_ugc.hpp
  binary/serdes.cpp
  binary/serdes.hpp
  binary/ugc_holder.hpp
  binary/visitors.hpp
  loader.cpp
  loader.hpp
  serdes.hpp
  serdes_json.hpp
  storage.cpp
  storage.hpp
  types.hpp
)

omim_add_library(${PROJECT_NAME} ${SRC})
omim_add_test_subdirectory(ugc_tests)