c@225
|
1 TEMPLATE = lib
|
c@253
|
2 CONFIG += warn_on staticlib release
|
c@230
|
3 CONFIG -= qt
|
c@225
|
4 OBJECTS_DIR = tmp_obj
|
c@225
|
5 MOC_DIR = tmp_moc
|
c@226
|
6
|
c@268
|
7 linux-g++:QMAKE_CXXFLAGS_RELEASE += -DNDEBUG -O3 -fno-exceptions -fPIC -march=pentium3 -mfpmath=sse -msse -ffast-math
|
c@254
|
8
|
c@232
|
9 #DEPENDPATH += base \
|
c@232
|
10 # dsp/chromagram \
|
c@232
|
11 # dsp/keydetection \
|
c@232
|
12 # dsp/maths \
|
c@232
|
13 # dsp/onsets \
|
c@232
|
14 # dsp/phasevocoder \
|
c@232
|
15 # dsp/rateconversion \
|
c@232
|
16 # dsp/signalconditioning \
|
c@232
|
17 # dsp/tempotracking \
|
c@232
|
18 # dsp/tonal \
|
c@232
|
19 # dsp/transforms
|
c@242
|
20 INCLUDEPATH += . include
|
c@225
|
21
|
c@225
|
22 # Input
|
c@225
|
23 HEADERS += base/Pitch.h \
|
c@225
|
24 base/Window.h \
|
c@225
|
25 dsp/chromagram/Chromagram.h \
|
c@225
|
26 dsp/chromagram/ChromaProcess.h \
|
c@225
|
27 dsp/chromagram/ConstantQ.h \
|
c@232
|
28 dsp/keydetection/GetKeyMode.h \
|
c@251
|
29 dsp/mfcc/MFCC.h \
|
c@225
|
30 dsp/onsets/DetectionFunction.h \
|
c@225
|
31 dsp/onsets/PeakPicking.h \
|
c@225
|
32 dsp/phasevocoder/PhaseVocoder.h \
|
c@225
|
33 dsp/rateconversion/Decimator.h \
|
c@256
|
34 dsp/rhythm/BeatSpectrum.h \
|
c@245
|
35 dsp/segmentation/cluster_melt.h \
|
c@245
|
36 dsp/segmentation/ClusterMeltSegmenter.h \
|
c@245
|
37 dsp/segmentation/cluster_segmenter.h \
|
c@245
|
38 dsp/segmentation/SavedFeatureSegmenter.h \
|
c@245
|
39 dsp/segmentation/Segmenter.h \
|
c@245
|
40 dsp/segmentation/segment.h \
|
c@225
|
41 dsp/signalconditioning/DFProcess.h \
|
c@225
|
42 dsp/signalconditioning/Filter.h \
|
c@225
|
43 dsp/signalconditioning/FiltFilt.h \
|
c@225
|
44 dsp/signalconditioning/Framer.h \
|
c@225
|
45 dsp/tempotracking/TempoTrack.h \
|
c@225
|
46 dsp/tonal/ChangeDetectionFunction.h \
|
c@225
|
47 dsp/tonal/TCSgram.h \
|
c@225
|
48 dsp/tonal/TonalEstimator.h \
|
c@241
|
49 dsp/transforms/FFT.h \
|
c@244
|
50 hmm/hmm.h \
|
c@241
|
51 maths/Correlation.h \
|
c@256
|
52 maths/CosineDistance.h \
|
c@241
|
53 maths/Histogram.h \
|
c@256
|
54 maths/KLDivergence.h \
|
c@241
|
55 maths/MathAliases.h \
|
c@241
|
56 maths/MathUtilities.h \
|
c@242
|
57 maths/Polyfit.h \
|
c@244
|
58 maths/pca/pca.h
|
c@225
|
59 SOURCES += base/Pitch.cpp \
|
c@225
|
60 dsp/chromagram/Chromagram.cpp \
|
c@225
|
61 dsp/chromagram/ChromaProcess.cpp \
|
c@225
|
62 dsp/chromagram/ConstantQ.cpp \
|
c@232
|
63 dsp/keydetection/GetKeyMode.cpp \
|
c@251
|
64 dsp/mfcc/MFCC.cpp \
|
c@225
|
65 dsp/onsets/DetectionFunction.cpp \
|
c@225
|
66 dsp/onsets/PeakPicking.cpp \
|
c@225
|
67 dsp/phasevocoder/PhaseVocoder.cpp \
|
c@225
|
68 dsp/rateconversion/Decimator.cpp \
|
c@256
|
69 dsp/rhythm/BeatSpectrum.cpp \
|
c@245
|
70 dsp/segmentation/cluster_melt.c \
|
c@245
|
71 dsp/segmentation/ClusterMeltSegmenter.cpp \
|
c@245
|
72 dsp/segmentation/cluster_segmenter.c \
|
c@245
|
73 dsp/segmentation/SavedFeatureSegmenter.cpp \
|
c@245
|
74 dsp/segmentation/Segmenter.cpp \
|
c@225
|
75 dsp/signalconditioning/DFProcess.cpp \
|
c@225
|
76 dsp/signalconditioning/Filter.cpp \
|
c@225
|
77 dsp/signalconditioning/FiltFilt.cpp \
|
c@225
|
78 dsp/signalconditioning/Framer.cpp \
|
c@225
|
79 dsp/tempotracking/TempoTrack.cpp \
|
c@225
|
80 dsp/tonal/ChangeDetectionFunction.cpp \
|
c@225
|
81 dsp/tonal/TCSgram.cpp \
|
c@225
|
82 dsp/tonal/TonalEstimator.cpp \
|
c@241
|
83 dsp/transforms/FFT.cpp \
|
c@244
|
84 hmm/hmm.c \
|
c@241
|
85 maths/Correlation.cpp \
|
c@256
|
86 maths/CosineDistance.cpp \
|
c@256
|
87 maths/KLDivergence.cpp \
|
c@242
|
88 maths/MathUtilities.cpp \
|
c@244
|
89 maths/pca/pca.c
|