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

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYury Melnichek <melnichek@malinovka.local>2011-08-16 13:24:53 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:21:49 +0300
commitc511d2caf25560e5441b50f3be68fdaebcb67199 (patch)
tree3b36296f2f3c24298bf928a657c644648e121ef4 /indexer/indexer.pro
parent3662b2efe60582f7fde1185377c02c12dbbe5963 (diff)
[search] Integrate search of a trie into main code. Not finished!
Diffstat (limited to 'indexer/indexer.pro')
-rw-r--r--indexer/indexer.pro8
1 files changed, 5 insertions, 3 deletions
diff --git a/indexer/indexer.pro b/indexer/indexer.pro
index b1a7b4d53b..bf510dd89d 100644
--- a/indexer/indexer.pro
+++ b/indexer/indexer.pro
@@ -5,7 +5,7 @@ TEMPLATE = lib
CONFIG += staticlib
ROOT_DIR = ..
-DEPENDENCIES = geometry coding base expat
+DEPENDENCIES = search geometry coding base expat
include($$ROOT_DIR/common.pri)
@@ -30,7 +30,8 @@ SOURCES += \
tesselator.cpp \
feature_data.cpp \
feature_rect.cpp \
- types_mapping.cpp
+ types_mapping.cpp \
+ search_index_builder.cpp \
HEADERS += \
feature.hpp \
@@ -65,4 +66,5 @@ HEADERS += \
tesselator_decl.hpp \
feature_data.hpp \
feature_rect.hpp \
- types_mapping.hpp
+ types_mapping.hpp \
+ search_index_builder.hpp \