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

indexer_tool.pro « indexer_tool « indexer - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 80aace0aec465793e2f92526b15a774270eda281 (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
# Indexer binary

ROOT_DIR = ../..
DEPENDENCIES = map storage indexer platform geometry coding base gflags expat sgitess version

include($$ROOT_DIR/common.pri)

CONFIG += console
CONFIG -= app_bundle
TEMPLATE = app

# needed for Platform::WorkingDir()
QT += core

win32 {
  LIBS += -lShell32
}

SOURCES += \
  indexer_tool.cpp \
  data_generator.cpp \
  feature_generator.cpp \
  feature_sorter.cpp \
  update_generator.cpp \
  grid_generator.cpp \
  statistics.cpp \
  kml_parser.cpp \

HEADERS += \
  osm_element.hpp \
  data_generator.hpp \
  feature_generator.hpp \
  first_pass_parser.hpp \
  data_cache_file.hpp \
  feature_sorter.hpp \
  update_generator.hpp \
  feature_bucketer.hpp \
  grid_generator.hpp \
  statistics.hpp \
  kml_parser.hpp \
  polygonizer.hpp \
  world_map_generator.hpp \