summaryrefslogtreecommitdiffstats
path: root/examples/audiorecorder/audiorecorder.pro
blob: 5ab3ec951113776a327b5e9be6cb68d203b03a6b (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
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