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: f204ad36ca516b04515543dbdd62a0a91d6b8d26 (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
# Project that just includes all other projects.

TEMPLATE = subdirs
CONFIG += ordered

HEADERS += defines.hpp

# desktop projects
win32|macx|unix {
SUBDIRS = 3party \
          base base/base_tests \
          coding coding/coding_tests \
          geometry \
          indexer \
          geometry/geometry_tests \
          version \
          platform platform/platform_tests \
          yg \
          storage storage/storage_tests \
          map \
          map/map_tests \
          indexer/indexer_tool \
          qt_tstfrm \
          indexer/indexer_tests \
          yg/yg_tests \
          qt
}

# libraries which are used on iphone and bada
iphonesimulator-g++42|iphonedevice-g++42 {
  SUBDIRS = 3party \
            base \
            coding \
            geometry \
            yg \
            indexer \
            version \
            storage \
            map
}