diff options
author | Morten Sørvig <msorvig@trolltech.com> | 2009-05-12 07:17:15 (GMT) |
---|---|---|
committer | Morten Sørvig <msorvig@trolltech.com> | 2009-05-12 07:17:15 (GMT) |
commit | 453abe70fec02456aba2219025f5202060eaece1 (patch) | |
tree | 1e14f1d76eafd07f6c7708ce1af0200e92cdab4a /tools/qtestlib/chart/chart.pro | |
parent | 4af513212d9ca9ed88e18bddaabd90006aca8541 (diff) | |
download | Qt-453abe70fec02456aba2219025f5202060eaece1.zip Qt-453abe70fec02456aba2219025f5202060eaece1.tar.gz Qt-453abe70fec02456aba2219025f5202060eaece1.tar.bz2 |
Add the chart utility from qtestlib-tools.
It is now possible run the benchmarks with "-chart" to generate
charts for benchmarks that produce chartable data. See
examples/qtestlib/tutorial5 for an example.
This patch has minimal inpact on QTestLib itself. Most of the
functionality is implemented in a separate tool which QTestLIb
calls after detecting the chart command line option.
Diffstat (limited to 'tools/qtestlib/chart/chart.pro')
-rw-r--r-- | tools/qtestlib/chart/chart.pro | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/qtestlib/chart/chart.pro b/tools/qtestlib/chart/chart.pro new file mode 100644 index 0000000..6f6e6d5 --- /dev/null +++ b/tools/qtestlib/chart/chart.pro @@ -0,0 +1,16 @@ +HEADERS += $$PWD/database.h $$PWD/reportgenerator.h +SOURCES += $$PWD/database.cpp $$PWD/reportgenerator.cpp +SOURCES += main.cpp +RESOURCES = $$PWD/chart.qrc + +QT += sql xml +CONFIG += console release +CONFIG -= app_bundle + + +TEMPLATE = app +DEPENDPATH += . +INCLUDEPATH += . +TARGET = chart + + |