blob: 12bdf643d1147f769fa6299f74e2cbd2b04f25d2 (
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
29
|
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
include($$QT_SOURCE_TREE/demos/symbianpkgrules.pri)
}
|