forked from mapsme/omim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstorage.pro
41 lines (35 loc) · 818 Bytes
/
storage.pro
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 \