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

storage.pro « storage - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e0ac68c67f61ea68f8db5ffed5f3e4cd29f5cd03 (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
# Storage library.

TARGET = storage
TEMPLATE = lib
CONFIG += staticlib warn_on

ROOT_DIR = ..

include($$ROOT_DIR/common.pri)

INCLUDEPATH += $$ROOT_DIR/3party/jansson/src

HEADERS += \
  country.hpp \
  country_decl.hpp \
  country_info_getter.hpp \
  country_name_getter.hpp \
  country_polygon.hpp \
  country_tree.hpp \
  downloader_search_params.hpp \
  downloading_policy.hpp \
  http_map_files_downloader.hpp \
  index.hpp \
  map_files_downloader.hpp \
  queued_country.hpp \
  storage.hpp \
  storage_defines.hpp \
  storage_helpers.hpp \

SOURCES += \
  country.cpp \
  country_decl.cpp \
  country_info_getter.cpp \
  country_name_getter.cpp \
  downloading_policy.cpp \
  http_map_files_downloader.cpp \
  index.cpp \
  queued_country.cpp \
  storage.cpp \
  storage_defines.cpp \
  storage_helpers.cpp \