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:
parent
8e18c69ba8
commit
8cff768d99
|
@ -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)
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue