2011-03-11 12:22:57 +01:00
|
|
|
TEMPLATE = lib
|
|
|
|
|
TARGET = QmlProfiler
|
|
|
|
|
|
|
|
|
|
DEFINES += PROFILER_LIBRARY
|
|
|
|
|
|
2012-03-13 17:12:53 +01:00
|
|
|
QT += network script
|
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4) {
|
|
|
|
|
QT += quick1
|
|
|
|
|
} else {
|
|
|
|
|
QT += declarative
|
|
|
|
|
}
|
2011-11-23 11:31:09 +01:00
|
|
|
|
2011-03-11 12:22:57 +01:00
|
|
|
include(../../qtcreatorplugin.pri)
|
|
|
|
|
include(../../plugins/coreplugin/coreplugin.pri)
|
|
|
|
|
include(../../plugins/analyzerbase/analyzerbase.pri)
|
2011-04-13 10:39:47 +02:00
|
|
|
include(../../plugins/qmlprojectmanager/qmlprojectmanager.pri)
|
2011-06-09 14:34:26 +02:00
|
|
|
include(../../plugins/qt4projectmanager/qt4projectmanager.pri)
|
2011-06-27 08:01:50 +02:00
|
|
|
include(../../plugins/remotelinux/remotelinux.pri)
|
2012-04-18 12:06:10 +02:00
|
|
|
include(../../libs/qmldebug/qmldebug.pri)
|
2011-06-27 17:18:55 +02:00
|
|
|
include(../../libs/extensionsystem/extensionsystem.pri)
|
2011-03-11 12:22:57 +01:00
|
|
|
include(canvas/canvas.pri)
|
|
|
|
|
|
|
|
|
|
SOURCES += \
|
|
|
|
|
qmlprofilerplugin.cpp \
|
|
|
|
|
qmlprofilertool.cpp \
|
|
|
|
|
qmlprofilerengine.cpp \
|
2011-04-08 13:05:39 +02:00
|
|
|
qmlprofilerattachdialog.cpp \
|
2011-06-09 14:34:26 +02:00
|
|
|
localqmlprofilerrunner.cpp \
|
2011-06-22 15:02:33 +02:00
|
|
|
codaqmlprofilerrunner.cpp \
|
2011-06-27 17:18:55 +02:00
|
|
|
remotelinuxqmlprofilerrunner.cpp \
|
2012-01-17 13:26:57 +01:00
|
|
|
qmlprofilereventview.cpp \
|
2012-02-24 10:47:17 +01:00
|
|
|
qmlprofilerdetailsrewriter.cpp \
|
|
|
|
|
qmlprofilertraceview.cpp \
|
|
|
|
|
timelinerenderer.cpp \
|
|
|
|
|
qmlprofilerstatemanager.cpp \
|
|
|
|
|
qv8profilerdatamodel.cpp \
|
|
|
|
|
qmlprofilerdatamodel.cpp \
|
|
|
|
|
qmlprofilerclientmanager.cpp \
|
|
|
|
|
qmlprofilerviewmanager.cpp
|
2011-03-11 12:22:57 +01:00
|
|
|
|
|
|
|
|
HEADERS += \
|
|
|
|
|
qmlprofilerconstants.h \
|
|
|
|
|
qmlprofiler_global.h \
|
|
|
|
|
qmlprofilerplugin.h \
|
|
|
|
|
qmlprofilertool.h \
|
|
|
|
|
qmlprofilerengine.h \
|
2011-04-08 13:05:39 +02:00
|
|
|
qmlprofilerattachdialog.h \
|
2011-05-04 16:50:24 +02:00
|
|
|
abstractqmlprofilerrunner.h \
|
2011-06-09 14:34:26 +02:00
|
|
|
localqmlprofilerrunner.h \
|
2011-06-22 15:02:33 +02:00
|
|
|
codaqmlprofilerrunner.h \
|
2011-06-27 17:18:55 +02:00
|
|
|
remotelinuxqmlprofilerrunner.h \
|
2012-01-17 13:26:57 +01:00
|
|
|
qmlprofilereventview.h \
|
2012-02-24 10:47:17 +01:00
|
|
|
qmlprofilerdetailsrewriter.h \
|
|
|
|
|
qmlprofilertraceview.h \
|
|
|
|
|
timelinerenderer.h \
|
|
|
|
|
qmlprofilerstatemanager.h \
|
|
|
|
|
qv8profilerdatamodel.h \
|
|
|
|
|
qmlprofilerdatamodel.h \
|
|
|
|
|
qmlprofilerclientmanager.h \
|
|
|
|
|
qmlprofilerviewmanager.h
|
2011-03-11 12:22:57 +01:00
|
|
|
|
|
|
|
|
RESOURCES += \
|
2011-10-11 17:52:39 +02:00
|
|
|
qml/qmlprofiler.qrc
|
2011-03-11 12:22:57 +01:00
|
|
|
|
|
|
|
|
OTHER_FILES += \
|
2011-04-04 16:59:40 +02:00
|
|
|
qml/Detail.qml \
|
|
|
|
|
qml/Label.qml \
|
|
|
|
|
qml/MainView.qml \
|
|
|
|
|
qml/RangeDetails.qml \
|
|
|
|
|
qml/RangeMover.qml \
|
2011-07-11 16:05:37 +02:00
|
|
|
qml/TimeDisplay.qml \
|
2011-10-11 17:52:39 +02:00
|
|
|
qml/TimeMarks.qml \
|
|
|
|
|
qml/StatusDisplay.qml \
|
2011-10-19 14:28:21 +02:00
|
|
|
qml/SelectionRange.qml \
|
|
|
|
|
qml/SelectionRangeDetails.qml \
|
2012-02-24 10:47:17 +01:00
|
|
|
qml/Overview.qml
|
2011-04-04 15:03:31 +02:00
|
|
|
|
|
|
|
|
FORMS += \
|
|
|
|
|
qmlprofilerattachdialog.ui
|