2013-06-24 14:17:43 +02:00
|
|
|
TARGET = QmlProfilerExtension
|
|
|
|
|
TEMPLATE = lib
|
|
|
|
|
|
|
|
|
|
include(../../qtcreatorplugin.pri)
|
|
|
|
|
|
2015-12-11 11:09:29 +01:00
|
|
|
QT += qml quick quickwidgets
|
|
|
|
|
|
2013-06-24 14:17:43 +02:00
|
|
|
DEFINES += QMLPROFILEREXTENSION_LIBRARY
|
2015-10-01 09:30:45 +02:00
|
|
|
CONFIG(licensechecker): DEFINES += LICENSECHECKER
|
2013-06-24 14:17:43 +02:00
|
|
|
|
|
|
|
|
# QmlProfilerExtension files
|
|
|
|
|
|
|
|
|
|
SOURCES += qmlprofilerextensionplugin.cpp \
|
|
|
|
|
scenegraphtimelinemodel.cpp \
|
2014-05-27 16:30:48 +02:00
|
|
|
pixmapcachemodel.cpp \
|
2014-09-08 18:33:02 +02:00
|
|
|
memoryusagemodel.cpp \
|
2015-11-13 18:03:23 +01:00
|
|
|
inputeventsmodel.cpp \
|
2015-12-11 11:09:10 +01:00
|
|
|
debugmessagesmodel.cpp \
|
|
|
|
|
flamegraphmodel.cpp \
|
2015-12-11 11:09:29 +01:00
|
|
|
flamegraphview.cpp \
|
|
|
|
|
flamegraph.cpp
|
2013-06-24 14:17:43 +02:00
|
|
|
|
|
|
|
|
HEADERS += qmlprofilerextensionplugin.h \
|
|
|
|
|
qmlprofilerextension_global.h \
|
|
|
|
|
qmlprofilerextensionconstants.h \
|
|
|
|
|
scenegraphtimelinemodel.h \
|
2014-05-27 16:30:48 +02:00
|
|
|
pixmapcachemodel.h \
|
2014-09-08 18:33:02 +02:00
|
|
|
memoryusagemodel.h \
|
2015-11-13 18:03:23 +01:00
|
|
|
inputeventsmodel.h \
|
2015-12-11 11:09:10 +01:00
|
|
|
debugmessagesmodel.h \
|
|
|
|
|
flamegraphmodel.h \
|
2015-12-11 11:09:29 +01:00
|
|
|
flamegraphview.h \
|
|
|
|
|
flamegraph.h
|
2013-06-24 14:17:43 +02:00
|
|
|
|
|
|
|
|
OTHER_FILES += \
|
2015-02-18 10:27:49 +01:00
|
|
|
QmlProfilerExtension.json.in
|
2015-12-11 11:09:29 +01:00
|
|
|
|
|
|
|
|
RESOURCES += \
|
|
|
|
|
flamegraph.qrc
|