use same output folder for GUI tests qmake builds to leverage existing output files from regular build (#4433)

This commit is contained in:
Oliver Stöneberg 2022-09-04 10:25:16 +02:00 committed by GitHub
parent 6ce5c24f21
commit 4d767d821e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 12 additions and 12 deletions

View File

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

View File

@ -2,8 +2,8 @@ TEMPLATE = app
TARGET = test-cppchecklibrarydata
DEPENDPATH += .
INCLUDEPATH += .
OBJECTS_DIR = ../build
MOC_DIR = ../build
OBJECTS_DIR = ../../temp
MOC_DIR = ../../temp
QT -= gui
QT += core

View File

@ -2,8 +2,8 @@ TEMPLATE = app
TARGET = test-filelist
DEPENDPATH += .
INCLUDEPATH += . ../../../externals/simplecpp
OBJECTS_DIR = ../build
MOC_DIR = ../build
OBJECTS_DIR = ../../temp
MOC_DIR = ../../temp
QT += testlib
include(../common.pri)

View File

@ -2,8 +2,8 @@ TEMPLATE = app
TARGET = test-projectfile
DEPENDPATH += .
INCLUDEPATH += . ../../../externals/simplecpp ../../../externals/tinyxml2 ../../../externals/picojson
OBJECTS_DIR = ../build
MOC_DIR = ../build
OBJECTS_DIR = ../../temp
MOC_DIR = ../../temp
QT -= gui
QT += core
CONFIG += console

View File

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

View File

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