Moved demo(s) to examples.
Demos are no longer part of QT_BUILD_PARTS, so any demos must be moved to examples to be build. So far that means the player demo. Change-Id: I92641be38accb1c1b723009f1004c63f59ec8266 Reviewed-on: http://codereview.qt.nokia.com/1470 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Michael Goddard <michael.goddard@nokia.com>
This commit is contained in:
35
examples/player/player.pro
Normal file
35
examples/player/player.pro
Normal file
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user