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: 1ff0c3d76319927a8bbdbec609c65d4b7d6a9547 (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
63
64
65
66
67
68
# Indexer library.

TARGET = indexer
TEMPLATE = lib
CONFIG += staticlib

ROOT_DIR = ..
DEPENDENCIES = geometry coding base expat

include($$ROOT_DIR/common.pri)


SOURCES += \
  osm2type.cpp \
  classificator.cpp \
  drawing_rules.cpp \
  drawing_rule_def.cpp \
  scales.cpp \
  osm_decl.cpp \
  feature.cpp \
  classif_routine.cpp \
  xml_element.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 \
  feature_merger.cpp \

HEADERS += \
  feature.hpp \
  cell_coverer.hpp \
  cell_id.hpp \
  osm2type.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 \
  classif_routine.hpp \
  xml_element.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 \
  feature_merger.hpp \