0
|
1 |
HEADERS = window.h
|
|
2 |
SOURCES = main.cpp \
|
|
3 |
window.cpp
|
|
4 |
RESOURCES = systray.qrc
|
|
5 |
QT += xml svg
|
|
6 |
|
|
7 |
# install
|
|
8 |
target.path = $$[QT_INSTALL_EXAMPLES]/desktop/systray
|
|
9 |
sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS systray.pro resources images
|
|
10 |
sources.path = $$[QT_INSTALL_EXAMPLES]/desktop/systray
|
|
11 |
INSTALLS += target sources
|
|
12 |
|
|
13 |
symbian: include($$QT_SOURCE_TREE/examples/symbianpkgrules.pri)
|
|
14 |
|
|
15 |
wince* {
|
|
16 |
CONFIG(debug, release|debug) {
|
|
17 |
addPlugins.sources = $$QT_BUILD_TREE/plugins/imageformats/qsvgd4.dll
|
|
18 |
}
|
|
19 |
CONFIG(release, release|debug) {
|
|
20 |
addPlugins.sources = $$QT_BUILD_TREE/plugins/imageformats/qsvg4.dll
|
|
21 |
}
|
|
22 |
addPlugins.path = imageformats
|
|
23 |
DEPLOYMENT += addPlugins
|
|
24 |
}
|