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

CMakeLists.txt « storage - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: efef485318bca1824e6c3fa8131326ad0c0f7b6d (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
include_directories(${OMIM_ROOT}/3party/jansson/src)

set(
  SRC
  app_store.hpp
  country.cpp
  country.hpp
  country_decl.cpp
  country_decl.hpp
  country_info_getter.cpp
  country_info_getter.hpp
  country_name_getter.cpp
  country_name_getter.hpp
  country_polygon.hpp
  country_tree.hpp
  downloader_search_params.hpp
  downloading_policy.cpp
  downloading_policy.hpp
  http_map_files_downloader.cpp
  http_map_files_downloader.hpp
  index.cpp
  index.hpp
  map_files_downloader.hpp
  queued_country.cpp
  queued_country.hpp
  storage.cpp
  storage.hpp
  storage_defines.cpp
  storage_defines.hpp
  storage_helpers.cpp
  storage_helpers.hpp
)

add_library(storage ${SRC})

#add_subdirectory(storage_tests)