diff options
Diffstat (limited to 'tools/qdbus/qdbusviewer/qdbusviewer.pro')
-rw-r--r-- | tools/qdbus/qdbusviewer/qdbusviewer.pro | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/tools/qdbus/qdbusviewer/qdbusviewer.pro b/tools/qdbus/qdbusviewer/qdbusviewer.pro new file mode 100644 index 0000000..6727691 --- /dev/null +++ b/tools/qdbus/qdbusviewer/qdbusviewer.pro @@ -0,0 +1,30 @@ +TEMPLATE = app +TARGET = qdbusviewer + +HEADERS = qdbusviewer.h \ + qdbusmodel.h \ + propertydialog.h + +SOURCES = qdbusviewer.cpp \ + qdbusmodel.cpp \ + propertydialog.cpp \ + main.cpp + +RESOURCES += qdbusviewer.qrc + +DESTDIR = ../../../bin + +CONFIG += qdbus +QT += xml + +target.path=$$[QT_INSTALL_BINS] +INSTALLS += target + +mac { + ICON = images/qdbusviewer.icns + QMAKE_INFO_PLIST = Info_mac.plist +} + +win32 { + RC_FILE = qdbusviewer.rc +} |