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

map.pro « map - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e20284eb34e6101304fe7ca5e045db46b6f082b5 (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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# Map library.

TARGET = map
TEMPLATE = lib
CONFIG += staticlib
INCLUDEPATH += ../3party/protobuf/src

ROOT_DIR = ..
DEPENDENCIES = search gui graphics indexer anim geometry coding base expat

include($$ROOT_DIR/common.pri)

HEADERS += \
    framework.hpp \
    feature_vec_model.hpp \
    events.hpp \
    navigator.hpp \
    drawer.hpp \
    draw_processor.hpp \
    draw_info.hpp \
    window_handle.hpp \
    tile_renderer.hpp \
    information_display.hpp \
    location_state.hpp \
    benchmark_provider.hpp \
    render_policy.hpp \
    tiling_render_policy_mt.hpp \
    tiling_render_policy_st.hpp \
    benchmark_engine.hpp \
    coverage_generator.hpp \
    tiler.hpp \
    tile.hpp \
    tile_cache.hpp \
    screen_coverage.hpp \
    ruler.hpp \
    measurement_utils.hpp \
    simple_render_policy.hpp \
    proto_to_styles.hpp \
    queued_renderer.hpp \
    basic_tiling_render_policy.hpp \
    bookmark.hpp \
    tile_set.hpp \
    geourl_process.hpp \
    country_status_display.hpp \
    rotate_screen_task.hpp \
    compass_arrow.hpp \
    compass_filter.hpp \
    animator.hpp \
    move_screen_task.hpp \
    change_viewport_task.hpp \
    dialog_settings.hpp \
    mwm_url.hpp \
    feature_styler.hpp \

SOURCES += \
    feature_vec_model.cpp \
    framework.cpp \
    navigator.cpp \
    drawer.cpp \
    draw_processor.cpp \
    tile_renderer.cpp \
    information_display.cpp \
    location_state.cpp \
    benchmark_provider.cpp \
    render_policy.cpp \
    tiling_render_policy_st.cpp \
    tiling_render_policy_mt.cpp \
    benchmark_engine.cpp \
    coverage_generator.cpp \
    tiler.cpp \
    tile_cache.cpp \
    tile.cpp \
    screen_coverage.cpp \
    ruler.cpp \
    measurement_utils.cpp \
    window_handle.cpp \
    simple_render_policy.cpp \
    proto_to_styles.cpp \
    queued_renderer.cpp \
    events.cpp \
    basic_tiling_render_policy.cpp \
    address_finder.cpp \
    tile_set.cpp \
    geourl_process.cpp \
    bookmark.cpp \
    country_status_display.cpp \
    rotate_screen_task.cpp \
    compass_arrow.cpp \
    compass_filter.cpp \
    animator.cpp \
    move_screen_task.cpp \
    change_viewport_task.cpp \
    dialog_settings.cpp \
    mwm_url.cpp \
    feature_styler.cpp \

!iphone*:!bada*:!android* {
  HEADERS += qgl_render_context.hpp
  SOURCES += qgl_render_context.cpp
  QT += opengl
}