c@225
|
1 TEMPLATE = lib
|
c@297
|
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@295
|
7 linux-g++* {
|
c@295
|
8 QMAKE_CXXFLAGS_RELEASE += -DNDEBUG -O3 -fno-exceptions -fPIC -ffast-math -msse -msse2 -ftree-vectorize -fomit-frame-pointer
|
c@295
|
9 DEFINES += USE_PTHREADS
|
c@295
|
10 INCLUDEPATH += ../vamp-plugin-sdk ../qm-dsp
|
c@295
|
11 LIBPATH += ../vamp-plugin-sdk/vamp-sdk ../qm-dsp
|
c@295
|
12 }
|
c@277
|
13
|
c@295
|
14 linux-g++-64 {
|
c@295
|
15 INCLUDEPATH += ../qm-vamp-plugins/build/linux/amd64
|
c@295
|
16 }
|
c@286
|
17
|
c@295
|
18 win32-x-g++ {
|
c@295
|
19 QMAKE_CXXFLAGS_RELEASE += -DNDEBUG -O2 -march=pentium3 -msse
|
c@296
|
20 INCLUDEPATH += . include ../include
|
c@295
|
21 }
|
c@254
|
22
|
c@295
|
23 macx-g++* {
|
c@297
|
24 QMAKE_MAC_SDK=/Developer/SDKs/MacOSX10.4u.sdk
|
c@297
|
25 CONFIG += x86 ppc
|
c@297
|
26 QMAKE_CXXFLAGS_RELEASE += -O2 -g0 -fvisibility=hidden -I/Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/Headers/
|
c@297
|
27 INCLUDEPATH += /Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/Headers/
|
c@295
|
28 DEFINES += USE_PTHREADS
|
c@295
|
29 QMAKE_CXXFLAGS_RELEASE += -fvisibility=hidden
|
c@295
|
30 }
|
c@270
|
31
|
c@269
|
32 INCLUDEPATH += .
|
c@225
|
33
|
c@225
|
34 # Input
|
c@225
|
35 HEADERS += base/Pitch.h \
|
c@225
|
36 base/Window.h \
|
c@225
|
37 dsp/chromagram/Chromagram.h \
|
c@225
|
38 dsp/chromagram/ChromaProcess.h \
|
c@225
|
39 dsp/chromagram/ConstantQ.h \
|
c@232
|
40 dsp/keydetection/GetKeyMode.h \
|
c@251
|
41 dsp/mfcc/MFCC.h \
|
c@225
|
42 dsp/onsets/DetectionFunction.h \
|
c@225
|
43 dsp/onsets/PeakPicking.h \
|
c@225
|
44 dsp/phasevocoder/PhaseVocoder.h \
|
c@225
|
45 dsp/rateconversion/Decimator.h \
|
c@256
|
46 dsp/rhythm/BeatSpectrum.h \
|
c@245
|
47 dsp/segmentation/cluster_melt.h \
|
c@245
|
48 dsp/segmentation/ClusterMeltSegmenter.h \
|
c@245
|
49 dsp/segmentation/cluster_segmenter.h \
|
c@245
|
50 dsp/segmentation/SavedFeatureSegmenter.h \
|
c@245
|
51 dsp/segmentation/Segmenter.h \
|
c@245
|
52 dsp/segmentation/segment.h \
|
c@225
|
53 dsp/signalconditioning/DFProcess.h \
|
c@225
|
54 dsp/signalconditioning/Filter.h \
|
c@225
|
55 dsp/signalconditioning/FiltFilt.h \
|
c@225
|
56 dsp/signalconditioning/Framer.h \
|
c@279
|
57 dsp/tempotracking/DownBeat.h \
|
c@225
|
58 dsp/tempotracking/TempoTrack.h \
|
c@277
|
59 dsp/tempotracking/TempoTrackV2.h \
|
c@225
|
60 dsp/tonal/ChangeDetectionFunction.h \
|
c@225
|
61 dsp/tonal/TCSgram.h \
|
c@225
|
62 dsp/tonal/TonalEstimator.h \
|
c@241
|
63 dsp/transforms/FFT.h \
|
c@290
|
64 dsp/transforms/kissfft/kiss_fft.h \
|
c@290
|
65 dsp/transforms/kissfft/kiss_fftr.h \
|
c@290
|
66 dsp/transforms/kissfft/_kiss_fft_guts.h \
|
c@285
|
67 dsp/wavelet/Wavelet.h \
|
c@244
|
68 hmm/hmm.h \
|
c@241
|
69 maths/Correlation.h \
|
c@256
|
70 maths/CosineDistance.h \
|
c@241
|
71 maths/Histogram.h \
|
c@256
|
72 maths/KLDivergence.h \
|
c@241
|
73 maths/MathAliases.h \
|
c@241
|
74 maths/MathUtilities.h \
|
c@242
|
75 maths/Polyfit.h \
|
c@286
|
76 maths/pca/pca.h \
|
c@292
|
77 thread/AsynchronousTask.h \
|
c@292
|
78 thread/BlockAllocator.h \
|
c@286
|
79 thread/Thread.h
|
c@225
|
80 SOURCES += base/Pitch.cpp \
|
c@225
|
81 dsp/chromagram/Chromagram.cpp \
|
c@225
|
82 dsp/chromagram/ChromaProcess.cpp \
|
c@225
|
83 dsp/chromagram/ConstantQ.cpp \
|
c@232
|
84 dsp/keydetection/GetKeyMode.cpp \
|
c@251
|
85 dsp/mfcc/MFCC.cpp \
|
c@225
|
86 dsp/onsets/DetectionFunction.cpp \
|
c@225
|
87 dsp/onsets/PeakPicking.cpp \
|
c@225
|
88 dsp/phasevocoder/PhaseVocoder.cpp \
|
c@225
|
89 dsp/rateconversion/Decimator.cpp \
|
c@256
|
90 dsp/rhythm/BeatSpectrum.cpp \
|
c@245
|
91 dsp/segmentation/cluster_melt.c \
|
c@245
|
92 dsp/segmentation/ClusterMeltSegmenter.cpp \
|
c@245
|
93 dsp/segmentation/cluster_segmenter.c \
|
c@245
|
94 dsp/segmentation/SavedFeatureSegmenter.cpp \
|
c@245
|
95 dsp/segmentation/Segmenter.cpp \
|
c@225
|
96 dsp/signalconditioning/DFProcess.cpp \
|
c@225
|
97 dsp/signalconditioning/Filter.cpp \
|
c@225
|
98 dsp/signalconditioning/FiltFilt.cpp \
|
c@225
|
99 dsp/signalconditioning/Framer.cpp \
|
c@279
|
100 dsp/tempotracking/DownBeat.cpp \
|
c@225
|
101 dsp/tempotracking/TempoTrack.cpp \
|
c@277
|
102 dsp/tempotracking/TempoTrackV2.cpp \
|
c@225
|
103 dsp/tonal/ChangeDetectionFunction.cpp \
|
c@225
|
104 dsp/tonal/TCSgram.cpp \
|
c@225
|
105 dsp/tonal/TonalEstimator.cpp \
|
c@241
|
106 dsp/transforms/FFT.cpp \
|
c@290
|
107 dsp/transforms/kissfft/kiss_fft.c \
|
c@290
|
108 dsp/transforms/kissfft/kiss_fftr.c \
|
c@285
|
109 dsp/wavelet/Wavelet.cpp \
|
c@244
|
110 hmm/hmm.c \
|
c@241
|
111 maths/Correlation.cpp \
|
c@256
|
112 maths/CosineDistance.cpp \
|
c@256
|
113 maths/KLDivergence.cpp \
|
c@242
|
114 maths/MathUtilities.cpp \
|
c@286
|
115 maths/pca/pca.c \
|
c@286
|
116 thread/Thread.cpp
|