blob: 304da3d5dd209e3e4a751b6b544df12332e1cda8 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
TEMPLATE = lib
TARGET = QmlProfiler
DEFINES += PROFILER_LIBRARY
include(../../qtcreatorplugin.pri)
include(../../plugins/coreplugin/coreplugin.pri)
include(../../plugins/analyzerbase/analyzerbase.pri)
QT += network script declarative
include(canvas/canvas.pri)
#include($$QMLJSDEBUGGER_PATH/qmljsdebugger-lib.pri)
SOURCES += \
qmlprofilerplugin.cpp \
qmlprofilertool.cpp \
qmlprofilerengine.cpp \
tracewindow.cpp \
timelineview.cpp \
qmlprofilerattachdialog.cpp
HEADERS += \
qmlprofilerconstants.h \
qmlprofiler_global.h \
qmlprofilerplugin.h \
qmlprofilertool.h \
qmlprofilerengine.h \
tracewindow.h \
timelineview.h \
qmlprofilerattachdialog.h
RESOURCES += \
qml/qml.qrc
OTHER_FILES += \
Detail.qml \
Elapsed.qml \
Label.qml \
MainView.qml \
RangeDetails.qml \
RangeMover.qml \
RecordButton.qml \
ToolButton.qml \
MainView.js
FORMS += \
qmlprofilerattachdialog.ui
|