summaryrefslogtreecommitdiffstats
path: root/examples/audiorecorder/audiorecorder.pro
blob: 7936d951afa7a941fc5969aa168940906e0dfb29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
TEMPLATE = app
TARGET = audiorecorder

QT += multimedia

win32:INCLUDEPATH += $$PWD

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