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:
authorAlex Zolotarev <alex@maps.me>2016-02-15 21:07:25 +0300
committerSergey Yershov <yershov@corp.mail.ru>2016-03-23 16:21:19 +0300
commit64d7f7694384e5fe12385a074884190f956ccd80 (patch)
tree4873880e6e0d469ff8b53c3b6352a161f2243377 /indexer/indexer.pro
parent0ac3f7c5b0b55a5ec344b656913e2c3218a9dc6f (diff)
Moved CategoriesHolder from search into indexer library. Need to access it from Editor.
Diffstat (limited to 'indexer/indexer.pro')
-rw-r--r--indexer/indexer.pro6
1 files changed, 6 insertions, 0 deletions
diff --git a/indexer/indexer.pro b/indexer/indexer.pro
index 8036093582..ab1f530271 100644
--- a/indexer/indexer.pro
+++ b/indexer/indexer.pro
@@ -10,6 +10,7 @@ ROOT_DIR = ..
include($$ROOT_DIR/common.pri)
SOURCES += \
+ categories_holder.cpp \
classificator.cpp \
classificator_loader.cpp \
coding_params.cpp \
@@ -46,10 +47,13 @@ SOURCES += \
point_to_int64.cpp \
rank_table.cpp \
scales.cpp \
+ search_delimiters.cpp \ # it's in indexer because of CategoriesHolder dependency.
+ search_string_utils.cpp \ # it's in indexer because of CategoriesHolder dependency.
types_mapping.cpp \
types_skipper.cpp \
HEADERS += \
+ categories_holder.hpp \
cell_coverer.hpp \
cell_id.hpp \
classificator.hpp \
@@ -96,6 +100,8 @@ HEADERS += \
scale_index.hpp \
scale_index_builder.hpp \
scales.hpp \
+ search_delimiters.hpp \ # it's in indexer because of CategoriesHolder dependency.
+ search_string_utils.hpp \ # it's in indexer because of CategoriesHolder dependency.
succinct_trie_builder.hpp \
succinct_trie_reader.hpp \
tesselator_decl.hpp \