Files
qtmultimedia/examples/video/video.pro
Gareth Stockwell febe398400 Add qmlvideo and qmlvideofx examples
Based on code imported from master branch of QtMobility repo,
ported to Qt Quick 2.

Task-number: QTBUG-23118
Change-Id: Ifd297de0e595c675ff1a8e3218d91b03629295b9
Reviewed-by: Jonas Rabbe <jonas.rabbe@nokia.com>
Reviewed-by: Michael Goddard <michael.goddard@nokia.com>
2011-12-22 02:29:16 +01:00

16 lines
316 B
Prolog

TEMPLATE = subdirs
SUBDIRS += qmlvideo
# qmlvideofx requires QtOpenGL and ShaderEffectItem (added in Qt 4.7.4)
contains(QT_CONFIG, opengl) {
lessThan(QT_MAJOR_VERSION, 5) {
!lessThan(QT_MAJOR_VERSION, 4) {
SUBDIRS += qmlvideofx
}
} else {
SUBDIRS += qmlvideofx
}
}