CONFIG key to disable building tests.

--HG--
branch : develop
master
Roman Telezhynskyi 2016-02-19 20:31:01 +02:00
parent 63151e5ca2
commit 06d88d66e5
1 changed files with 15 additions and 6 deletions

View File

@ -1,8 +1,17 @@
TEMPLATE = subdirs
SUBDIRS = \
libs \
app \
test
app.depends = libs
test.depends = libs
noTests{ # For enable run qmake with CONFIG+=noTests
SUBDIRS = \
libs \
app
} else {
SUBDIRS = \
libs \
app \
test
test.depends = libs
}
app.depends = libs