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: 389c1bd6b1740cb16175ad1dcc72ae93262a5af5 (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
# Map library.

TARGET = map
TEMPLATE = lib
CONFIG += staticlib

ROOT_DIR = ..
DEPENDENCIES = search yg indexer geometry coding base expat

include($$ROOT_DIR/common.pri)

HEADERS += \
    framework.hpp \
    feature_vec_model.hpp \
    events.hpp \
    navigator.hpp \
    drawer_yg.hpp \
    draw_processor.hpp \
    draw_info.hpp \
    window_handle.hpp \
    render_queue.hpp \
    render_queue_routine.hpp \
    information_display.hpp \
    settings.hpp \
    location_state.hpp \
    benchmark_provider.hpp \
    languages.hpp \

SOURCES += \
    feature_vec_model.cpp \
    framework.cpp \
    navigator.cpp \
    drawer_yg.cpp \
    draw_processor.cpp \
    render_queue.cpp \
    render_queue_routine.cpp \
    information_display.cpp \
    settings.cpp \
    location_state.cpp \
    benchmark_provider.cpp \
    languages.cpp \

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