forked from qt-creator/qt-creator
fbce58bf8c
Change-Id: Ifa3939eeda2a473722cbd8dfac33794a15d8c453 Reviewed-on: http://codereview.qt.nokia.com/678 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Christiaan Janssen <christiaan.janssen@nokia.com>
64 lines
1.5 KiB
Prolog
64 lines
1.5 KiB
Prolog
TEMPLATE = lib
|
|
TARGET = QmlProfiler
|
|
|
|
DEFINES += PROFILER_LIBRARY
|
|
|
|
include(../../qtcreatorplugin.pri)
|
|
include(../../plugins/coreplugin/coreplugin.pri)
|
|
include(../../plugins/analyzerbase/analyzerbase.pri)
|
|
include(../../plugins/qmlprojectmanager/qmlprojectmanager.pri)
|
|
include(../../plugins/qt4projectmanager/qt4projectmanager.pri)
|
|
include(../../libs/qmljsdebugclient/qmljsdebugclient-lib.pri)
|
|
|
|
QT += network script declarative
|
|
|
|
include(canvas/canvas.pri)
|
|
|
|
SOURCES += \
|
|
qmlprofilerplugin.cpp \
|
|
qmlprofilertool.cpp \
|
|
qmlprofilerengine.cpp \
|
|
tracewindow.cpp \
|
|
timelineview.cpp \
|
|
qmlprofilerattachdialog.cpp \
|
|
qmlprofilersummaryview.cpp \
|
|
qmlprojectanalyzerruncontrolfactory.cpp \
|
|
localqmlprofilerrunner.cpp \
|
|
codaqmlprofilerrunner.cpp \
|
|
qmlprofilercalleeview.cpp \
|
|
qmlprofilercallerview.cpp
|
|
|
|
HEADERS += \
|
|
qmlprofilerconstants.h \
|
|
qmlprofiler_global.h \
|
|
qmlprofilerplugin.h \
|
|
qmlprofilertool.h \
|
|
qmlprofilerengine.h \
|
|
tracewindow.h \
|
|
timelineview.h \
|
|
qmlprofilerattachdialog.h \
|
|
qmlprofilersummaryview.h \
|
|
qmlprojectanalyzerruncontrolfactory.h \
|
|
abstractqmlprofilerrunner.h \
|
|
localqmlprofilerrunner.h \
|
|
codaqmlprofilerrunner.h \
|
|
qmlprofilercalleeview.h \
|
|
qmlprofilercallerview.h
|
|
|
|
RESOURCES += \
|
|
qml/qml.qrc
|
|
|
|
OTHER_FILES += \
|
|
qml/Detail.qml \
|
|
qml/Elapsed.qml \
|
|
qml/Label.qml \
|
|
qml/MainView.qml \
|
|
qml/RangeDetails.qml \
|
|
qml/RangeMover.qml \
|
|
qml/ToolButton.qml \
|
|
qml/MainView.js \
|
|
qml/TimeDisplay.qml
|
|
|
|
FORMS += \
|
|
qmlprofilerattachdialog.ui
|