Change-Id: I248f811a13ca00ccbf5d342a556d389bca625856 Reviewed-on: http://codereview.qt-project.org/4940 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Michael Goddard <michael.goddard@nokia.com>
26 lines
472 B
Prolog
26 lines
472 B
Prolog
TEMPLATE = app
|
|
TARGET = audiorecorder
|
|
|
|
QT += multimediakit
|
|
|
|
HEADERS = \
|
|
audiorecorder.h
|
|
|
|
SOURCES = \
|
|
main.cpp \
|
|
audiorecorder.cpp
|
|
|
|
maemo*: {
|
|
FORMS += audiorecorder_small.ui
|
|
}else {
|
|
FORMS += audiorecorder.ui
|
|
}
|
|
|
|
target.path = $$[QT_INSTALL_EXAMPLES]/qtmultimediakit/audiorecorder
|
|
sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS *.pro
|
|
sources.path = $$[QT_INSTALL_EXAMPLES]/qtmultimediakit/audiorecorder
|
|
|
|
INSTALLS += target sources
|
|
|
|
QT+=widgets
|