aboutsummaryrefslogtreecommitdiffstats
path: root/tools/qmlprofiler/qmlprofiler.pro
diff options
context:
space:
mode:
authorAurindam Jana <aurindam.jana@nokia.com>2012-02-09 17:04:43 +0100
committerQt by Nokia <qt-info@nokia.com>2012-02-20 17:59:32 +0100
commit6c24d2feb43f6d640d83ee6e5ac01a1bdac3d0ce (patch)
treec9e540fe3f1873c1f80df897f49bf378b5f108c8 /tools/qmlprofiler/qmlprofiler.pro
parent045e5932915000d2c510d8d3a1cc916b7c5a5d55 (diff)
QmlProfilerTool: add tool to QDeclarative
qmlprofiler is a standalone tool used to record profiling data of QML apps. The data is stored in a file which can be loaded in QtCreator for investigation. Change-Id: I308f4c40bc3876933bd0d32c336cef6cd6f5fb4a Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
Diffstat (limited to 'tools/qmlprofiler/qmlprofiler.pro')
-rw-r--r--tools/qmlprofiler/qmlprofiler.pro25
1 files changed, 25 insertions, 0 deletions
diff --git a/tools/qmlprofiler/qmlprofiler.pro b/tools/qmlprofiler/qmlprofiler.pro
new file mode 100644
index 0000000000..1d8f89a150
--- /dev/null
+++ b/tools/qmlprofiler/qmlprofiler.pro
@@ -0,0 +1,25 @@
+TEMPLATE = app
+TARGET = qmlprofiler
+DESTDIR = $$QT.declarative.bins
+
+QT += declarative declarative-private network
+
+target.path = $$[QT_INSTALL_BINS]
+INSTALLS += target
+
+macx: CONFIG -= app_bundle
+
+CONFIG += console declarative_debug
+
+SOURCES += main.cpp \
+ qmlprofilerapplication.cpp \
+ commandlistener.cpp \
+ profileclient.cpp \
+ profiledata.cpp
+
+HEADERS += \
+ qmlprofilerapplication.h \
+ commandlistener.h \
+ constants.h \
+ profileclient.h \
+ profiledata.h