annotate qm-dsp.pro @ 270:54e09b1962db

...
author Chris Cannam <c.cannam@qmul.ac.uk>
date Thu, 03 Jul 2008 14:04:38 +0000
parents a63c7b6191b5
children 38bf09927942
rev   line source
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@270 9 macx-g++:QMAKE_CXXFLAGS_RELEASE += -fvisibility=hidden
c@270 10
c@232 11 #DEPENDPATH += base \
c@232 12 # dsp/chromagram \
c@232 13 # dsp/keydetection \
c@232 14 # dsp/maths \
c@232 15 # dsp/onsets \
c@232 16 # dsp/phasevocoder \
c@232 17 # dsp/rateconversion \
c@232 18 # dsp/signalconditioning \
c@232 19 # dsp/tempotracking \
c@232 20 # dsp/tonal \
c@232 21 # dsp/transforms
c@269 22
c@269 23 #INCLUDEPATH += . include
c@269 24 INCLUDEPATH += .
c@225 25
c@225 26 # Input
c@225 27 HEADERS += base/Pitch.h \
c@225 28 base/Window.h \
c@225 29 dsp/chromagram/Chromagram.h \
c@225 30 dsp/chromagram/ChromaProcess.h \
c@225 31 dsp/chromagram/ConstantQ.h \
c@232 32 dsp/keydetection/GetKeyMode.h \
c@251 33 dsp/mfcc/MFCC.h \
c@225 34 dsp/onsets/DetectionFunction.h \
c@225 35 dsp/onsets/PeakPicking.h \
c@225 36 dsp/phasevocoder/PhaseVocoder.h \
c@225 37 dsp/rateconversion/Decimator.h \
c@256 38 dsp/rhythm/BeatSpectrum.h \
c@245 39 dsp/segmentation/cluster_melt.h \
c@245 40 dsp/segmentation/ClusterMeltSegmenter.h \
c@245 41 dsp/segmentation/cluster_segmenter.h \
c@245 42 dsp/segmentation/SavedFeatureSegmenter.h \
c@245 43 dsp/segmentation/Segmenter.h \
c@245 44 dsp/segmentation/segment.h \
c@225 45 dsp/signalconditioning/DFProcess.h \
c@225 46 dsp/signalconditioning/Filter.h \
c@225 47 dsp/signalconditioning/FiltFilt.h \
c@225 48 dsp/signalconditioning/Framer.h \
c@225 49 dsp/tempotracking/TempoTrack.h \
c@225 50 dsp/tonal/ChangeDetectionFunction.h \
c@225 51 dsp/tonal/TCSgram.h \
c@225 52 dsp/tonal/TonalEstimator.h \
c@241 53 dsp/transforms/FFT.h \
c@244 54 hmm/hmm.h \
c@241 55 maths/Correlation.h \
c@256 56 maths/CosineDistance.h \
c@241 57 maths/Histogram.h \
c@256 58 maths/KLDivergence.h \
c@241 59 maths/MathAliases.h \
c@241 60 maths/MathUtilities.h \
c@242 61 maths/Polyfit.h \
c@244 62 maths/pca/pca.h
c@225 63 SOURCES += base/Pitch.cpp \
c@225 64 dsp/chromagram/Chromagram.cpp \
c@225 65 dsp/chromagram/ChromaProcess.cpp \
c@225 66 dsp/chromagram/ConstantQ.cpp \
c@232 67 dsp/keydetection/GetKeyMode.cpp \
c@251 68 dsp/mfcc/MFCC.cpp \
c@225 69 dsp/onsets/DetectionFunction.cpp \
c@225 70 dsp/onsets/PeakPicking.cpp \
c@225 71 dsp/phasevocoder/PhaseVocoder.cpp \
c@225 72 dsp/rateconversion/Decimator.cpp \
c@256 73 dsp/rhythm/BeatSpectrum.cpp \
c@245 74 dsp/segmentation/cluster_melt.c \
c@245 75 dsp/segmentation/ClusterMeltSegmenter.cpp \
c@245 76 dsp/segmentation/cluster_segmenter.c \
c@245 77 dsp/segmentation/SavedFeatureSegmenter.cpp \
c@245 78 dsp/segmentation/Segmenter.cpp \
c@225 79 dsp/signalconditioning/DFProcess.cpp \
c@225 80 dsp/signalconditioning/Filter.cpp \
c@225 81 dsp/signalconditioning/FiltFilt.cpp \
c@225 82 dsp/signalconditioning/Framer.cpp \
c@225 83 dsp/tempotracking/TempoTrack.cpp \
c@225 84 dsp/tonal/ChangeDetectionFunction.cpp \
c@225 85 dsp/tonal/TCSgram.cpp \
c@225 86 dsp/tonal/TonalEstimator.cpp \
c@241 87 dsp/transforms/FFT.cpp \
c@244 88 hmm/hmm.c \
c@241 89 maths/Correlation.cpp \
c@256 90 maths/CosineDistance.cpp \
c@256 91 maths/KLDivergence.cpp \
c@242 92 maths/MathUtilities.cpp \
c@244 93 maths/pca/pca.c