diff options
author | Christian Kamm <christian.d.kamm@nokia.com> | 2011-02-09 15:00:31 (GMT) |
---|---|---|
committer | Kai Koehne <kai.koehne@nokia.com> | 2011-05-12 09:24:44 (GMT) |
commit | bd7109bd2517de14d10e14c689b07f94f174396f (patch) | |
tree | 84facbbd3bed9cd8401dd09a4f09e37077f2a4fe /tools/qmlplugindump/qmlplugindump.pro | |
parent | a8fdea9460ffd4814240543b0fd340aee593db85 (diff) | |
download | Qt-bd7109bd2517de14d10e14c689b07f94f174396f.zip Qt-bd7109bd2517de14d10e14c689b07f94f174396f.tar.gz Qt-bd7109bd2517de14d10e14c689b07f94f174396f.tar.bz2 |
Move qmldump from Qt Creator to Qt.
Also rename it to qmlplugindump.
Qmlplugindump is a tool that loads a QML module and prints type
information about the types contained in its plugins to the standard
output.
Reviewed-by: Aaron Kennedy
Change-Id: I7c35c34af23adc1c37453393d71e492dedfc6a9b
(cherry picked from b5265d4e99e5c90532e190632951070cf1a2b630)
Diffstat (limited to 'tools/qmlplugindump/qmlplugindump.pro')
-rw-r--r-- | tools/qmlplugindump/qmlplugindump.pro | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tools/qmlplugindump/qmlplugindump.pro b/tools/qmlplugindump/qmlplugindump.pro new file mode 100644 index 0000000..53827e2 --- /dev/null +++ b/tools/qmlplugindump/qmlplugindump.pro @@ -0,0 +1,20 @@ +TEMPLATE = app +CONFIG += qt uic console +DESTDIR = ../../bin + +QT += declarative + +TARGET = qmlplugindump + +SOURCES += \ + main.cpp \ + qmlstreamwriter.cpp + +HEADERS += \ + qmlstreamwriter.h + +OTHER_FILES += Info.plist +macx: QMAKE_INFO_PLIST = Info.plist + +target.path = $$[QT_INSTALL_BINS] +INSTALLS += target |