aboutsummaryrefslogtreecommitdiffstats
path: root/src/src.pro
blob: cc1c0e710765f03725083d00f8952b82e51c1259 (plain)
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
TARGET = qmlbench
TEMPLATE = app
QT += quick

lessThan(QT_MAJOR_VERSION, 5): error("This benchmark tool is for QtQuick 2 only, and requires Qt 5.")

SOURCES += \
    main.cpp \
    resultrecorder.cpp \
    benchmarkrunner.cpp \
    testmodel.cpp \
    qmlbench.cpp

HEADERS += \
    resultrecorder.h \
    benchmarkrunner.h \
    benchmark.h \
    options.h \
    testmodel.h \
    qmlbench.h

CONFIG += console
CONFIG -= app_bundle

RESOURCES += qmlbench.qrc