use same output folder for GUI tests qmake builds to leverage existing output files from regular build (#4433)
This commit is contained in:
parent
6ce5c24f21
commit
4d767d821e
|
@ -2,8 +2,8 @@ TEMPLATE = app
|
||||||
TARGET = benchmark-simple
|
TARGET = benchmark-simple
|
||||||
DEPENDPATH += .
|
DEPENDPATH += .
|
||||||
INCLUDEPATH += .
|
INCLUDEPATH += .
|
||||||
OBJECTS_DIR = ../../build
|
OBJECTS_DIR = ../../../temp
|
||||||
MOC_DIR = ../../build
|
MOC_DIR = ../../temp
|
||||||
|
|
||||||
include(../../common.pri)
|
include(../../common.pri)
|
||||||
|
|
||||||
|
|
|
@ -2,8 +2,8 @@ TEMPLATE = app
|
||||||
TARGET = test-cppchecklibrarydata
|
TARGET = test-cppchecklibrarydata
|
||||||
DEPENDPATH += .
|
DEPENDPATH += .
|
||||||
INCLUDEPATH += .
|
INCLUDEPATH += .
|
||||||
OBJECTS_DIR = ../build
|
OBJECTS_DIR = ../../temp
|
||||||
MOC_DIR = ../build
|
MOC_DIR = ../../temp
|
||||||
|
|
||||||
QT -= gui
|
QT -= gui
|
||||||
QT += core
|
QT += core
|
||||||
|
|
|
@ -2,8 +2,8 @@ TEMPLATE = app
|
||||||
TARGET = test-filelist
|
TARGET = test-filelist
|
||||||
DEPENDPATH += .
|
DEPENDPATH += .
|
||||||
INCLUDEPATH += . ../../../externals/simplecpp
|
INCLUDEPATH += . ../../../externals/simplecpp
|
||||||
OBJECTS_DIR = ../build
|
OBJECTS_DIR = ../../temp
|
||||||
MOC_DIR = ../build
|
MOC_DIR = ../../temp
|
||||||
QT += testlib
|
QT += testlib
|
||||||
|
|
||||||
include(../common.pri)
|
include(../common.pri)
|
||||||
|
|
|
@ -2,8 +2,8 @@ TEMPLATE = app
|
||||||
TARGET = test-projectfile
|
TARGET = test-projectfile
|
||||||
DEPENDPATH += .
|
DEPENDPATH += .
|
||||||
INCLUDEPATH += . ../../../externals/simplecpp ../../../externals/tinyxml2 ../../../externals/picojson
|
INCLUDEPATH += . ../../../externals/simplecpp ../../../externals/tinyxml2 ../../../externals/picojson
|
||||||
OBJECTS_DIR = ../build
|
OBJECTS_DIR = ../../temp
|
||||||
MOC_DIR = ../build
|
MOC_DIR = ../../temp
|
||||||
QT -= gui
|
QT -= gui
|
||||||
QT += core
|
QT += core
|
||||||
CONFIG += console
|
CONFIG += console
|
||||||
|
|
|
@ -2,8 +2,8 @@ TEMPLATE = app
|
||||||
TARGET = test-translationhandler
|
TARGET = test-translationhandler
|
||||||
DEPENDPATH += .
|
DEPENDPATH += .
|
||||||
INCLUDEPATH += .
|
INCLUDEPATH += .
|
||||||
OBJECTS_DIR = ../build
|
OBJECTS_DIR = ../../temp
|
||||||
MOC_DIR = ../build
|
MOC_DIR = ../../temp
|
||||||
QT += widgets
|
QT += widgets
|
||||||
|
|
||||||
include(../common.pri)
|
include(../common.pri)
|
||||||
|
|
|
@ -2,8 +2,8 @@ TEMPLATE = app
|
||||||
TARGET = test-xmlreportv2
|
TARGET = test-xmlreportv2
|
||||||
DEPENDPATH += .
|
DEPENDPATH += .
|
||||||
INCLUDEPATH += . ../../../externals/simplecpp
|
INCLUDEPATH += . ../../../externals/simplecpp
|
||||||
OBJECTS_DIR = ../build
|
OBJECTS_DIR = ../../temp
|
||||||
MOC_DIR = ../build
|
MOC_DIR = ../../temp
|
||||||
|
|
||||||
include(../common.pri)
|
include(../common.pri)
|
||||||
include(../../../lib/lib.pri)
|
include(../../../lib/lib.pri)
|
||||||
|
|
Loading…
Reference in New Issue