-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy paththreadpool.pro
103 lines (94 loc) · 1.63 KB
/
threadpool.pro
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
#-------------------------------------------------
#
# Project created by QtCreator 2014-12-28T16:53:17
#
#-------------------------------------------------
QT += gui declarative
TARGET = threadpool
TEMPLATE = app
QMAKE_CXXFLAGS += -O3 -std=c++11 -ffast-math -msse4.2
win32{
INCLUDEPATH += \
./lib/ffmpeg/include \
./lib/libao/include
}
SOURCES += main.cpp \
threadpool.cpp \
queue.cpp \
buffer.cpp \
ffmpeg.cpp \
bgpoint.cpp \
test1.cpp \
debug.cpp \
test2.cpp \
driver.cpp \
audioout.cpp \
effect.cpp \
preamp.cpp \
player.cpp \
fir.cpp \
tapdistortion.cpp \
componentmanager.cpp \
component.cpp \
eq.cpp \
shibatch/equ.cpp \
shibatch/ooura_fft.c \
alsa.cpp \
notify.cpp \
vumeter.cpp \
disp.cpp \
common.cpp
HEADERS += \
threadpool.h \
queue.h \
buffer.h \
ffmpeg.h \
bgpoint.h \
bufferconfig.h \
test1.h \
debug.h \
test2.h \
stopwatch.h \
ringbuffer.h \
driver.h \
audioout.h \
effect.h \
preamp.h \
player.h \
decoder.h \
resource.h \
delaybuffer.h \
fir.h \
tapdistortion.h \
componentmanager.h \
component.h \
common.h \
runnable.h \
eq.h \
alsa.h \
notify.h \
vumeter.h \
disp.h
win32 {
LIBS += \
-L./lib/ffmpeg/lib \
./lib/libao/lib/libao.a \
-lavformat -lavcodec -lavutil -lwinmm
}
unix {
LIBS += \
-lavformat -lavcodec -lavutil -lao -lasound
}
CONFIG(release)
{
DEFINES += \
DEBUG \
USE_OOURA
}
CONFIG(debug)
{
DEFINES += \
USE_OOURA
}
FORMS += \
disp.ui