1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
QT += core
QT -= gui
CONFIG += c++11
TARGET = quickfluxunittests
CONFIG += console
CONFIG -= app_bundle
TEMPLATE = app
DEFINES += SRCDIR=\\\"$$PWD/\\\" QUICK_TEST_SOURCE_DIR=\\\"$$PWD/qmltests\\\"
SOURCES += main.cpp \
quickfluxunittests.cpp \
testenv.cpp \
actiontypes.cpp \
messagelogger.cpp
include(vendor/vendor.pri)
include(../../quickflux.pri)
HEADERS += \
quickfluxunittests.h \
testenv.h \
actiontypes.h \
messagelogger.h
RESOURCES += \
qml.qrc
!win32 {
message("Enable -Werror");
QMAKE_CXXFLAGS += -Werror
}
DISTFILES += \
qmltests/tst_appdispatcher_dispatch_reentrant.qml \
qmltests/tst_appdispatcher_waitfor.qml \
qmltests/tst_appdispatcher.qml \
qmltests/tst_applistener_alwayson.qml \
qmltests/tst_applistener_filter.qml \
qmltests/tst_applistener_waitfor.qml \
qmltests/tst_applistener.qml \
qmltests/tst_applistenergroup.qml \
qmltests/tst_appscript.qml \
qmltests/tst_appscriptgroup.qml \
qmltests/tst_filter.qml \
qmltests/tst_keytable.qml \
qmltests/tst_qimage.qml \
qmltests/tst_actioncreator.qml \
qmltests/tst_store.qml \
qmltests/tst_store_children.qml \
qmltests/tst_hydrate.qml \
qmltests/tst_store_bridge.qml \
qpm.json \
qmltests/tst_middleware_filterFunctionEnabled.qml \
qmltests/tst_middlewarelist.qml \
qmltests/tst_middlewarelist_applyTarget.qml \
../../appveyor.yml \
qmltests/tst_middleware_exception.qml
|