0
|
1 |
TEMPLATE = app
|
|
2 |
TARGET =
|
|
3 |
INCLUDEPATH += .
|
|
4 |
|
|
5 |
HEADERS += desktopwidget.h contenttab.h linktab.h
|
|
6 |
SOURCES += desktopwidget.cpp contenttab.cpp linktab.cpp main.cpp
|
|
7 |
|
|
8 |
RESOURCES += desktopservices.qrc
|
|
9 |
|
|
10 |
music.sources = data/*.mp3 data/*.wav
|
|
11 |
image.sources = data/*.png
|
|
12 |
|
|
13 |
target.path = $$[QT_INSTALL_DEMOS]/embedded/desktopservices
|
|
14 |
sources.files = $$SOURCES $$HEADERS $$RESOURCES *.pro
|
|
15 |
sources.path = $$[QT_INSTALL_DEMOS]/embedded/desktopservices
|
|
16 |
|
|
17 |
symbian {
|
|
18 |
TARGET.UID3 = 0xA000C611
|
|
19 |
include($$QT_SOURCE_TREE/demos/symbianpkgrules.pri)
|
|
20 |
ICON = ./resources/heart.svg
|
|
21 |
music.path = /data/sounds/
|
|
22 |
image.path = /data/images/
|
|
23 |
DEPLOYMENT += music image
|
|
24 |
}
|
|
25 |
|
|
26 |
wince*{
|
|
27 |
music.path = "\My Documents\My Music"
|
|
28 |
image.path = "\My Documents\My Pictures"
|
|
29 |
DEPLOYMENT += music image
|
|
30 |
}
|
|
31 |
|
|
32 |
INSTALLS += target sources
|