blob: 0bf2eb9bc354b47bf74975a85ef3b72a06afd04c (
plain) (
blame)
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
30
31
32
33
34
35
36
37
38
39
40
|
# ???? ?????? ? KDevelop ?????????? qmake.
# -------------------------------------------
# ?????????? ???????????? ???????? ???????? ???????: ./libs
# ???? - ??????????: nnp
HEADERS += recycler.h \
buffer.h \
constants.h \
decoder.h \
output.h \
filetag.h \
outputfactory.h \
equ\iir_cfs.h \
equ\iir_fpu.h \
equ\iir.h \
decoderfactory.h \
soundcore.h \
visualization.h \
streamreader.h
SOURCES += recycler.cpp \
decoder.cpp \
output.cpp \
equ\iir.c \
equ\iir_cfs.c \
equ\iir_fpu.c \
soundcore.cpp \
streamreader.cpp
QT += network
TARGET = qmmp
CONFIG += release \
warn_on \
qt \
thread
TEMPLATE = lib
target.path = /lib
INSTALLS += target
|