summaryrefslogtreecommitdiffstats
path: root/examples/player/player.pro
diff options
context:
space:
mode:
Diffstat (limited to 'examples/player/player.pro')
-rw-r--r--examples/player/player.pro35
1 files changed, 35 insertions, 0 deletions
diff --git a/examples/player/player.pro b/examples/player/player.pro
new file mode 100644
index 000000000..c22066dc2
--- /dev/null
+++ b/examples/player/player.pro
@@ -0,0 +1,35 @@
+TEMPLATE = app
+TARGET = player
+
+CONFIG += qt warn_on
+
+QT += network \
+ xml \
+ multimediakit \
+
+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
+}
+
+symbian {
+ LIBS += -lavkon -lcone -leikcore
+ TARGET.CAPABILITY = ReadUserData
+}
+
+#install
+target.path = $$[QT_INSTALL_EXAMPLES]/qtmultimediakit/player
+sources.files = $$SOURCES $HEADERS $$RESOURCES $$FORMS *.pro
+sources.path = $$[QT_INSTALL_EXAMPLES]/qtmultimediakit/player
+INSTALLS += target sources
+