blob: 922de1b3d7c84dcc681196afd647851734a0f8f0 (
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
|
QT += multimedia
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
sources.path = $$[QT_INSTALL_DEMOS]/multimedia/player
INSTALLS += target sources
symbian {
TARGET.UID3 = 0xA000E3FA
}
|