Changed the .pro files and moved some things around to ensure that the examples and demos for Qt Multimedia Kit compiles and can be checked by the CI system. Change-Id: I915dc38ca76a97f20949df715725659c603231e2 Reviewed-on: http://codereview.qt.nokia.com/1136 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Dmytro Poplavskiy <dmytro.poplavskiy@nokia.com> Reviewed-by: Jonas Rabbe <jonas.rabbe@nokia.com>
31 lines
711 B
Prolog
31 lines
711 B
Prolog
|
|
TEMPLATE=app
|
|
|
|
QT += declarative network multimediakit
|
|
|
|
!maemo5 {
|
|
contains(QT_CONFIG, opengl) {
|
|
QT += opengl
|
|
}
|
|
}
|
|
|
|
SOURCES += $$PWD/qmlcamera.cpp
|
|
!mac:TARGET = qml_camera
|
|
else:TARGET = QmlCamera
|
|
|
|
RESOURCES += declarative-camera.qrc
|
|
|
|
symbian {
|
|
include(camerakeyevent_symbian/camerakeyevent_symbian.pri)
|
|
load(data_caging_paths)
|
|
TARGET.CAPABILITY += UserEnvironment NetworkServices Location ReadUserData WriteUserData
|
|
TARGET.EPOCHEAPSIZE = 0x20000 0x3000000
|
|
}
|
|
|
|
target.path = $$[QT_INSTALL_EXAMPLES]/qtmultimediakit/qml_camera
|
|
sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS *.pro
|
|
sources.path = $$[QT_INSTALL_EXAMPLES]/qtmultimediakit/qml_camera
|
|
|
|
INSTALLS += target sources
|
|
|