summaryrefslogtreecommitdiffstats
path: root/examples/player/player.pro
blob: 3bc6c654defa75584477f4ff98ed0883e541bf7e (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
30
31
32
TEMPLATE = app
TARGET = player

CONFIG += qt warn_on

QT += network \
      xml \
      multimedia \
      multimediawidgets

HEADERS = \
    player.h \
    playercontrols.h \
    playlistmodel.h \
    videowidget.h
SOURCES = main.cpp \
    player.cpp \
    playercontrols.cpp \
    playlistmodel.cpp \
    videowidget.cpp

maemo* {
    DEFINES += PLAYER_NO_COLOROPTIONS
}

#install
target.path = $$[QT_INSTALL_EXAMPLES]/qtmultimedia/player
sources.files = $$SOURCES $HEADERS $$RESOURCES $$FORMS *.pro
sources.path = $$[QT_INSTALL_EXAMPLES]/qtmultimedia/player
INSTALLS += target sources

QT+=widgets