forked from qt-creator/qt-creator
Change-Id: I928769fa86f1ac5c489918bf2da3c691054a0459 Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com> Reviewed-by: Alessandro Portale <alessandro.portale@theqtcompany.com>
40 lines
964 B
Prolog
40 lines
964 B
Prolog
TARGET = QmlProfilerExtension
|
|
TEMPLATE = lib
|
|
|
|
include(../../qtcreatorplugin.pri)
|
|
|
|
QT += qml quick quickwidgets
|
|
|
|
DEFINES += QMLPROFILEREXTENSION_LIBRARY
|
|
CONFIG(licensechecker): DEFINES += LICENSECHECKER
|
|
|
|
# QmlProfilerExtension files
|
|
|
|
SOURCES += qmlprofilerextensionplugin.cpp \
|
|
scenegraphtimelinemodel.cpp \
|
|
pixmapcachemodel.cpp \
|
|
memoryusagemodel.cpp \
|
|
inputeventsmodel.cpp \
|
|
debugmessagesmodel.cpp \
|
|
flamegraphmodel.cpp \
|
|
flamegraphview.cpp \
|
|
flamegraph.cpp
|
|
|
|
HEADERS += qmlprofilerextensionplugin.h \
|
|
qmlprofilerextension_global.h \
|
|
qmlprofilerextensionconstants.h \
|
|
scenegraphtimelinemodel.h \
|
|
pixmapcachemodel.h \
|
|
memoryusagemodel.h \
|
|
inputeventsmodel.h \
|
|
debugmessagesmodel.h \
|
|
flamegraphmodel.h \
|
|
flamegraphview.h \
|
|
flamegraph.h
|
|
|
|
OTHER_FILES += \
|
|
QmlProfilerExtension.json.in
|
|
|
|
RESOURCES += \
|
|
flamegraph.qrc
|