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

indexer.pro « indexer - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6680c2fb959543006ad0bb9f9ea683b0d5250731 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Indexer library.

TARGET = indexer
TEMPLATE = lib
CONFIG += staticlib

ROOT_DIR = ..
DEPENDENCIES = geometry coding base expat

include($$ROOT_DIR/common.pri)


SOURCES += \
    classificator.cpp \
    drawing_rules.cpp \
    drawing_rule_def.cpp \
    scales.cpp \
    osm_decl.cpp \
    feature.cpp \
    classificator_loader.cpp \
    scale_index.cpp \
    covering.cpp \
    point_to_int64.cpp \
    mercator.cpp \
    index_builder.cpp \
    feature_visibility.cpp \
    data_header.cpp \
    geometry_coding.cpp \
    geometry_serialization.cpp \
    tesselator.cpp \

HEADERS += \
    feature.hpp \
    cell_coverer.hpp \
    cell_id.hpp \
    classificator.hpp \
    drawing_rules.hpp \
    drawing_rule_def.hpp \
    features_vector.hpp \
    scale_index.hpp \
    scale_index_builder.hpp \
    index.hpp \
    index_builder.hpp \
    scales.hpp \
    osm_decl.hpp \
    classificator_loader.hpp \
    interval_index.hpp \
    interval_index_builder.hpp \
    covering.hpp \
    mercator.hpp \
    feature_processor.hpp \
    file_reader_stream.hpp \
    file_writer_stream.hpp \
    feature_visibility.hpp \
    data_header.hpp \
    tree_structure.hpp \
    feature_impl.hpp \
    geometry_coding.hpp \
    geometry_serialization.hpp \
    point_to_int64.hpp \
    tesselator.hpp \
    tesselator_decl.hpp \