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

gtool.pro - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 41797ba597eb01acc9e1ba11a57fe332afbcc5b0 (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
# Project to compile generator tool on machines without OpenGL

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

HEADERS += defines.hpp

SUBDIRS = 3party \
          base \
          coding \
          geometry \
          stats \
          indexer \
          platform \
          routing \
          storage \
          generator \
          generator/generator_tool \