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

drape_frontend.pro « drape_frontend - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5c6c392fb6b287ef4959afe5b192589a5c2e073b (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
TARGET = drape_frontend
TEMPLATE = lib
CONFIG += staticlib

DEPENDENCIES = drape base
ROOT_DIR = ..
include($$ROOT_DIR/common.pri)

INCLUDEPATH *= $$ROOT_DIR/3party/protobuf/src
DEFINES += DRAW_INFO

SOURCES += \
    engine_context.cpp \
    memory_feature_index.cpp \
    message_queue.cpp \
    message.cpp \
    threads_commutator.cpp \
    message_acceptor.cpp \
    backend_renderer.cpp \
    read_mwm_task.cpp \
    batchers_pool.cpp \
    frontend_renderer.cpp \
    drape_engine.cpp \
    area_shape.cpp \
    read_manager.cpp \
    tile_info.cpp \
    stylist.cpp \
    line_shape.cpp \
    rule_drawer.cpp \
    viewport.cpp \
    tile_key.cpp \
    apply_feature_functors.cpp \
    visual_params.cpp \
    poi_symbol_shape.cpp \
    circle_shape.cpp \
    render_group.cpp \
    text_shape.cpp \
    path_text_shape.cpp \
    path_symbol_shape.cpp \
    common_structures.cpp \
    text_layout.cpp \

HEADERS += \
    engine_context.hpp \
    memory_feature_index.hpp \
    tile_info.hpp \
    message_queue.hpp \
    message.hpp \
    threads_commutator.hpp \
    message_acceptor.hpp \
    backend_renderer.hpp \
    read_mwm_task.hpp \
    message_subclasses.hpp \
    map_shape.hpp \
    batchers_pool.hpp \
    frontend_renderer.hpp \
    drape_engine.hpp \
    area_shape.hpp \
    read_manager.hpp \
    stylist.hpp \
    line_shape.hpp \
    shape_view_params.hpp \
    rule_drawer.hpp \
    viewport.hpp \
    tile_key.hpp \
    apply_feature_functors.hpp \
    visual_params.hpp \
    poi_symbol_shape.hpp \
    circle_shape.hpp \
    render_group.hpp \
    text_shape.hpp \
    path_text_shape.hpp \
    path_symbol_shape.hpp \
    common_structures.hpp \
    fribidi.hpp \
    text_layout.hpp \
    intrusive_vector.hpp \