diff options
Diffstat (limited to 'examples/desktop/systray/systray.pro')
-rw-r--r-- | examples/desktop/systray/systray.pro | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/examples/desktop/systray/systray.pro b/examples/desktop/systray/systray.pro new file mode 100644 index 0000000..c73a48e --- /dev/null +++ b/examples/desktop/systray/systray.pro @@ -0,0 +1,22 @@ +HEADERS = window.h +SOURCES = main.cpp \ + window.cpp +RESOURCES = systray.qrc +QT += xml svg + +# install +target.path = $$[QT_INSTALL_EXAMPLES]/desktop/systray +sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS systray.pro resources images +sources.path = $$[QT_INSTALL_EXAMPLES]/desktop/systray +INSTALLS += target sources + +wince* { + CONFIG(debug, release|debug) { + addPlugins.sources = $$QT_BUILD_TREE/plugins/imageformats/qsvgd4.dll + } + CONFIG(release, release|debug) { + addPlugins.sources = $$QT_BUILD_TREE/plugins/imageformats/qsvg4.dll + } + addPlugins.path = imageformats + DEPLOYMENT += addPlugins +} |