GUITESTS: Use common build artifact directory.

Using common build artifacts (object files, moc files) avoids
recompiling whole lib and other shared files separately for each
test.
This commit is contained in:
Kimmo Varis 2011-06-10 14:35:02 +03:00
parent 8e18c69ba8
commit 8cff768d99
4 changed files with 8 additions and 8 deletions

View File

@ -2,8 +2,8 @@ TEMPLATE = app
TARGET = test-translationhandler
DEPENDPATH += .
INCLUDEPATH += .
OBJECTS_DIR = build
MOC_DIR = build
OBJECTS_DIR = ../build
MOC_DIR = ../build
include(../common.pri)

View File

@ -2,8 +2,8 @@ TEMPLATE = app
TARGET = test-xmlreport
DEPENDPATH += .
INCLUDEPATH += .
OBJECTS_DIR = build
MOC_DIR = build
OBJECTS_DIR = ../build
MOC_DIR = ../build
include(../common.pri)

View File

@ -2,8 +2,8 @@ TEMPLATE = app
TARGET = test-xmlreportv1
DEPENDPATH += .
INCLUDEPATH += .
OBJECTS_DIR = build
MOC_DIR = build
OBJECTS_DIR = ../build
MOC_DIR = ../build
include(../common.pri)

View File

@ -2,8 +2,8 @@ TEMPLATE = app
TARGET = test-xmlreportv2
DEPENDPATH += .
INCLUDEPATH += .
OBJECTS_DIR = build
MOC_DIR = build
OBJECTS_DIR = ../build
MOC_DIR = ../build
include(../common.pri)