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: 52feab98a20d0397b79464a9e2ebe69928f8b306 (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
# Map library.

TARGET = map
TEMPLATE = lib
CONFIG += staticlib

ROOT_DIR = ..
DEPENDENCIES = 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 \

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 \

!iphonesimulator-g++42 {
  !iphonedevice-g++42 {
    !bada-simulator {
      !bada-device {
        HEADERS += qgl_render_context.hpp
        SOURCES += qgl_render_context.cpp
      }
    }
  }
}