1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
include(../../../variables.pri)
include(../../../coverage.pri)
TEMPLATE = app
LANGUAGE = C++
TARGET = chaserrunner_test
QT += testlib
CONFIG -= app_bundle
DEPENDPATH += ../../src
INCLUDEPATH += ../../../plugins/interfaces
INCLUDEPATH += ../mastertimer
INCLUDEPATH += ../../src
QMAKE_LIBDIR += ../../src
LIBS += -lqlcplusengine
SOURCES += chaserrunner_test.cpp ../mastertimer/mastertimer_stub.cpp
HEADERS += chaserrunner_test.h ../mastertimer/mastertimer_stub.h ../common/resource_paths.h
|