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

search.pro « search - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 904d35553cbcd1fb62b6857c0b2c531d174acb3d (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
# Search library.

TARGET = search
TEMPLATE = lib
CONFIG += staticlib warn_on

ROOT_DIR = ..

include($$ROOT_DIR/common.pri)

HEADERS += \
    algos.hpp \
    approximate_string_match.hpp \
    feature_offset_match.hpp \
    geometry_utils.hpp \
    house_detector.hpp \
    indexed_value.hpp \
    intermediate_result.hpp \
    keyword_lang_matcher.hpp \
    keyword_matcher.hpp \
    latlon_match.hpp \
    locality_finder.hpp \
    params.hpp \
    query_saver.hpp \
    result.hpp \
    retrieval.hpp \
    search_common.hpp \
    search_engine.hpp \
    search_query.hpp \
    search_query_factory.hpp \
    search_query_params.hpp \
    search_string_intersection.hpp \

SOURCES += \
    approximate_string_match.cpp \
    geometry_utils.cpp \
    house_detector.cpp \
    intermediate_result.cpp \
    keyword_lang_matcher.cpp \
    keyword_matcher.cpp \
    latlon_match.cpp \
    locality_finder.cpp \
    params.cpp \
    query_saver.cpp \
    result.cpp \
    retrieval.cpp \
    search_engine.cpp \
    search_query.cpp \
    search_query_params.cpp \