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

omim.pro - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4d75f5f04a26ce34c5cda63adb4cbac224a8fb84 (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
# Project that just includes all other projects.
QT_VERSION = $$[QT_VERSION]
QT_VERSION = $$split(QT_VERSION, ".")
QT_VER_MAJ = $$member(QT_VERSION, 0)
QT_VER_MIN = $$member(QT_VERSION, 1)

greaterThan(QT_VER_MAJ, 4) {
  cache()
}

TEMPLATE = subdirs
CONFIG += ordered
#CONFIG += drape_device

HEADERS += defines.hpp

# desktop projects
!iphone*:!tizen*:!android* {
SUBDIRS = 3party \
          base base/base_tests \
          coding coding/coding_tests \
          geometry \
          stats \
          indexer \
          platform \
          platform/platform_tests_support \
          routing \
          geometry/geometry_tests \
          platform/platform_tests \
          anim \
          qt_tstfrm \
          drape \
          drape/drape_tests \
          graphics \
          gui \
          render render/render_tests \
          storage storage/storage_tests \
          search search/search_tests \
          drape_frontend drape_frontend/drape_frontend_tests \
          map map/map_tests map/benchmark_tool map/mwm_tests \
          routing/routing_tests \
          generator generator/generator_tests \
          generator/generator_tool \
          indexer/indexer_tests \
          graphics/graphics_tests \
          gui/gui_tests \
          qt \
          drape_head \
          integration_tests \
          pedestrian_routing_benchmarks \
          search/integration_tests \
} else:drape_device {
  # libraries which are used on mobile devices with drape engine
  SUBDIRS = 3party \
            base \
            coding \
            geometry \
            drape \
            platform \
            anim \
            indexer \
            routing \
            storage \
            graphics \
            gui \
            render \
            search \
            drape_frontend \
            map \
            stats \
} else {
  # libraries which are used on mobile devices
  SUBDIRS = 3party \
            base \
            coding \
            geometry \
            platform \
            anim \
            indexer \
            routing \
            storage \
            graphics \
            gui \
            render \
            search \
            map \
            stats \
}

win32 {
  SUBDIRS -= \
    drape drape/drape_tests \
    drape_frontend drape_frontend/drape_frontend_tests \
    drape_head
}