Files
qtmultimedia/examples/audiorecorder/audiorecorder.pro
Lev Zelenskiy b37ea41ce1 Audio recorder example updated to display level using QAudioProbe.
Change-Id: I7d5aea306aeb3cd9109615f9ed4905c53125233a
Reviewed-by: Michael Goddard <michael.goddard@nokia.com>
2012-02-24 06:51:30 +01:00

28 lines
505 B
Prolog

TEMPLATE = app
TARGET = audiorecorder
QT += multimedia
HEADERS = \
audiorecorder.h \
qaudiolevel.h
SOURCES = \
main.cpp \
audiorecorder.cpp \
qaudiolevel.cpp
maemo*: {
FORMS += audiorecorder_small.ui
}else {
FORMS += audiorecorder.ui
}
target.path = $$[QT_INSTALL_EXAMPLES]/qtmultimedia/audiorecorder
sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS *.pro
sources.path = $$[QT_INSTALL_EXAMPLES]/qtmultimedia/audiorecorder
INSTALLS += target sources
QT+=widgets