blob: 3c238daa8bf5352874f5ab7c788729f29230a7d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
TEMPLATE = app
TARGET = audiodecoder
CONFIG += qt warn_on
HEADERS = \
audiodecoder.h \
wavefilewriter.h
SOURCES = main.cpp \
audiodecoder.cpp \
wavefilewriter.cpp
QT += multimedia
CONFIG += console
# install
target.path = $$[QT_INSTALL_EXAMPLES]/qtmultimedia/audiodecoder
sources.files = $$SOURCES $$HEADERS audiodecoder.pro
sources.path = $$[QT_INSTALL_EXAMPLES]/qtmultimedia/audiodecoder
INSTALLS += target sources
|