blob: 0b868bd42ba9c98f802e21a36e8dbd027da64455 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
TEMPLATE = app
TARGET = player
QT += gui mediaservices
HEADERS = \
player.h \
playercontrols.h \
playlistmodel.h \
videowidget.h
SOURCES = \
main.cpp \
player.cpp \
playercontrols.cpp \
playlistmodel.cpp \
videowidget.cpp
target.path = $$[QT_INSTALL_DEMOS]/multimedia/player
sources.files = $$SOURCES $$HEADERS *.pro
sources.path = $$[QT_INSTALL_DEMOS]/multimedia/player
INSTALLS += target sources
symbian {
TARGET.UID3 = 0xA000E3FA
}
|