Files
qtmultimedia/examples/audiorecorder/audiorecorder.pro
Jonas Rabbe 503f885785 Fixed up examples and demos
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>
2011-07-06 05:17:52 +02:00

31 lines
679 B
Prolog

TEMPLATE = app
TARGET = audiorecorder
QT += multimediakit
HEADERS = \
audiorecorder.h
SOURCES = \
main.cpp \
audiorecorder.cpp
maemo*: {
FORMS += audiorecorder_small.ui
}else:symbian:contains(S60_VERSION, 3.2)|contains(S60_VERSION, 3.1){
DEFINES += SYMBIAN_S60_3X
FORMS += audiorecorder_small.ui
}else {
FORMS += audiorecorder.ui
}
symbian: {
TARGET.CAPABILITY = UserEnvironment ReadDeviceData WriteDeviceData
}
target.path = $$[QT_INSTALL_EXAMPLES]/qtmultimediakit/audiorecorder
sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS *.pro
sources.path = $$[QT_INSTALL_EXAMPLES]/qtmultimediakit/audiorecorder
INSTALLS += target sources