Project file to compile generator tool only on linux boxes

This commit is contained in:
Alex Zolotarev 2014-09-13 13:08:45 -07:00 committed by Alex Zolotarev
parent 5381728948
commit 04ab49cd6f

32
gtool.pro Normal file
View file

@ -0,0 +1,32 @@
# 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 \
anim \
graphics \
gui \
storage \
search \
map \
generator \
generator/generator_tool \