diff options
author | Christian Kandeler <christian.kandeler@theqtcompany.com> | 2014-11-24 11:27:00 +0100 |
---|---|---|
committer | Ulf Hermann <ulf.hermann@theqtcompany.com> | 2014-11-25 11:15:41 +0200 |
commit | bfc37d69732e1a504f4bb834001885e1407f9552 (patch) | |
tree | ebbcb4d226ca885c83d797da5ca62f12116926af | |
parent | d8210098225155817fc58b3e82d899f7856a8c7a (diff) | |
download | qt-creator-bfc37d69732e1a504f4bb834001885e1407f9552.tar.gz |
Add qbs project file.qp-v3.3.0-rc1qp-v3.3.0
Change-Id: If583799f3dfd09c6c5c49ee8305c0df8b038881a
Reviewed-by: Ulf Hermann <ulf.hermann@theqtcompany.com>
-rw-r--r-- | plugins/qmlprofilerextension/qmlprofilerextension.qbs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/plugins/qmlprofilerextension/qmlprofilerextension.qbs b/plugins/qmlprofilerextension/qmlprofilerextension.qbs new file mode 100644 index 0000000000..337461372e --- /dev/null +++ b/plugins/qmlprofilerextension/qmlprofilerextension.qbs @@ -0,0 +1,26 @@ +import qbs + +QtcPlugin { + name: "QmlProfilerExtension" + + Depends { name: "Core" } + Depends { name: "LicenseChecker" } + Depends { name: "QmlProfiler" } + + Depends { name: "Qt.widgets" } + + files: [ + "inputeventsmodel.cpp", + "inputeventsmodel.h", + "memoryusagemodel.cpp", + "memoryusagemodel.h", + "pixmapcachemodel.cpp", + "pixmapcachemodel.h", + "qmlprofilerextensionconstants.h", + "qmlprofilerextensionplugin.cpp", + "qmlprofilerextensionplugin.h", + "qmlprofilerextension_global.h", + "scenegraphtimelinemodel.cpp", + "scenegraphtimelinemodel.h", + ] +} |