c@225
|
1 TEMPLATE = lib
|
c@225
|
2 CONFIG += release warn_on staticlib
|
c@230
|
3 CONFIG -= qt
|
c@225
|
4 OBJECTS_DIR = tmp_obj
|
c@225
|
5 MOC_DIR = tmp_moc
|
c@226
|
6
|
c@232
|
7 #DEPENDPATH += base \
|
c@232
|
8 # dsp/chromagram \
|
c@232
|
9 # dsp/keydetection \
|
c@232
|
10 # dsp/maths \
|
c@232
|
11 # dsp/onsets \
|
c@232
|
12 # dsp/phasevocoder \
|
c@232
|
13 # dsp/rateconversion \
|
c@232
|
14 # dsp/signalconditioning \
|
c@232
|
15 # dsp/tempotracking \
|
c@232
|
16 # dsp/tonal \
|
c@232
|
17 # dsp/transforms
|
c@232
|
18 INCLUDEPATH += .
|
c@225
|
19
|
c@225
|
20 # Input
|
c@225
|
21 HEADERS += base/Pitch.h \
|
c@225
|
22 base/Window.h \
|
c@225
|
23 dsp/chromagram/Chromagram.h \
|
c@225
|
24 dsp/chromagram/ChromaProcess.h \
|
c@225
|
25 dsp/chromagram/ConstantQ.h \
|
c@232
|
26 dsp/keydetection/GetKeyMode.h \
|
c@225
|
27 dsp/maths/Correlation.h \
|
c@225
|
28 dsp/maths/Histogram.h \
|
c@225
|
29 dsp/maths/MathAliases.h \
|
c@225
|
30 dsp/maths/MathUtilities.h \
|
c@225
|
31 dsp/maths/Polyfit.h \
|
c@225
|
32 dsp/onsets/DetectionFunction.h \
|
c@225
|
33 dsp/onsets/PeakPicking.h \
|
c@225
|
34 dsp/phasevocoder/PhaseVocoder.h \
|
c@225
|
35 dsp/rateconversion/Decimator.h \
|
c@225
|
36 dsp/signalconditioning/DFProcess.h \
|
c@225
|
37 dsp/signalconditioning/Filter.h \
|
c@225
|
38 dsp/signalconditioning/FiltFilt.h \
|
c@225
|
39 dsp/signalconditioning/Framer.h \
|
c@225
|
40 dsp/tempotracking/TempoTrack.h \
|
c@225
|
41 dsp/tonal/ChangeDetectionFunction.h \
|
c@225
|
42 dsp/tonal/TCSgram.h \
|
c@225
|
43 dsp/tonal/TonalEstimator.h \
|
c@226
|
44 dsp/transforms/FFT.h
|
c@225
|
45 SOURCES += base/Pitch.cpp \
|
c@225
|
46 dsp/chromagram/Chromagram.cpp \
|
c@225
|
47 dsp/chromagram/ChromaProcess.cpp \
|
c@225
|
48 dsp/chromagram/ConstantQ.cpp \
|
c@232
|
49 dsp/keydetection/GetKeyMode.cpp \
|
c@225
|
50 dsp/maths/Correlation.cpp \
|
c@225
|
51 dsp/maths/MathUtilities.cpp \
|
c@225
|
52 dsp/onsets/DetectionFunction.cpp \
|
c@225
|
53 dsp/onsets/PeakPicking.cpp \
|
c@225
|
54 dsp/phasevocoder/PhaseVocoder.cpp \
|
c@225
|
55 dsp/rateconversion/Decimator.cpp \
|
c@225
|
56 dsp/signalconditioning/DFProcess.cpp \
|
c@225
|
57 dsp/signalconditioning/Filter.cpp \
|
c@225
|
58 dsp/signalconditioning/FiltFilt.cpp \
|
c@225
|
59 dsp/signalconditioning/Framer.cpp \
|
c@225
|
60 dsp/tempotracking/TempoTrack.cpp \
|
c@225
|
61 dsp/tonal/ChangeDetectionFunction.cpp \
|
c@225
|
62 dsp/tonal/TCSgram.cpp \
|
c@225
|
63 dsp/tonal/TonalEstimator.cpp \
|
c@226
|
64 dsp/transforms/FFT.cpp
|