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: 4fca7a8af9f9386449be30e0563fea5aace471f0 (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
# Storage library.

TARGET = storage
TEMPLATE = lib
CONFIG += staticlib

ROOT_DIR = ..

DEPENDENCIES = indexer geometry coding base jansson

include($$ROOT_DIR/common.pri)

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

HEADERS += \
  country.hpp \
  simple_tree.hpp \
  storage.hpp \
  country_polygon.hpp \
  country_info.hpp \
  country_decl.hpp \
  index.hpp \

SOURCES += \
  country.cpp \
  storage.cpp \
  country_info.cpp \
  country_decl.cpp \
  index.cpp \