Use build-time define to set the path to the source files directory. Which then can be used to format path to the test data. This allows running tests from out-of-source-tree -builds that e.g. QtCreator does.
16 lines
237 B
Prolog
16 lines
237 B
Prolog
TEMPLATE = app
|
|
TARGET = test-xmlreport
|
|
DEPENDPATH += .
|
|
INCLUDEPATH += .
|
|
OBJECTS_DIR = ../build
|
|
MOC_DIR = ../build
|
|
|
|
DEFINES += SRCDIR=\\\"$$PWD\\\"
|
|
|
|
include(../common.pri)
|
|
|
|
# tests
|
|
SOURCES += testxmlreport.cpp
|
|
|
|
HEADERS += testxmlreport.h
|