annotate qm-dsp.pro @ 225:49844bc8a895

* Queen Mary C++ DSP library
author Chris Cannam <c.cannam@qmul.ac.uk>
date Wed, 05 Apr 2006 17:35:59 +0000
parents
children a017ab37d8ea
rev   line source
c@225 1 TEMPLATE = lib
c@225 2 CONFIG += release warn_on staticlib
c@225 3 OBJECTS_DIR = tmp_obj
c@225 4 MOC_DIR = tmp_moc
c@225 5 DEPENDPATH += base \
c@225 6 dsp/chromagram \
c@225 7 dsp/maths \
c@225 8 dsp/onsets \
c@225 9 dsp/phasevocoder \
c@225 10 dsp/rateconversion \
c@225 11 dsp/signalconditioning \
c@225 12 dsp/tempotracking \
c@225 13 dsp/tonal \
c@225 14 dsp/transforms
c@225 15 INCLUDEPATH += . \
c@225 16 base \
c@225 17 dsp/maths \
c@225 18 dsp/chromagram \
c@225 19 dsp/transforms \
c@225 20 dsp/onsets \
c@225 21 dsp/phasevocoder \
c@225 22 dsp/signalconditioning \
c@225 23 dsp/rateconversion \
c@225 24 dsp/tempotracking \
c@225 25 dsp/tonal
c@225 26
c@225 27 # Input
c@225 28 HEADERS += base/Pitch.h \
c@225 29 base/Window.h \
c@225 30 dsp/chromagram/Chromagram.h \
c@225 31 dsp/chromagram/ChromaProcess.h \
c@225 32 dsp/chromagram/ConstantQ.h \
c@225 33 dsp/maths/Correlation.h \
c@225 34 dsp/maths/Histogram.h \
c@225 35 dsp/maths/MathAliases.h \
c@225 36 dsp/maths/MathUtilities.h \
c@225 37 dsp/maths/Polyfit.h \
c@225 38 dsp/maths/SimpleMatrix.h \
c@225 39 dsp/onsets/DetectionFunction.h \
c@225 40 dsp/onsets/PeakPicking.h \
c@225 41 dsp/phasevocoder/PhaseVocoder.h \
c@225 42 dsp/rateconversion/Decimator.h \
c@225 43 dsp/signalconditioning/DFProcess.h \
c@225 44 dsp/signalconditioning/Filter.h \
c@225 45 dsp/signalconditioning/FiltFilt.h \
c@225 46 dsp/signalconditioning/Framer.h \
c@225 47 dsp/signalconditioning/Windowing.h \
c@225 48 dsp/tempotracking/TempoTrack.h \
c@225 49 dsp/tonal/ChangeDetectionFunction.h \
c@225 50 dsp/tonal/ChromaMatrix.h \
c@225 51 dsp/tonal/TCSgram.h \
c@225 52 dsp/tonal/TonalEstimator.h \
c@225 53 dsp/transforms/FFT.h \
c@225 54 dsp/transforms/Fourier.h
c@225 55 SOURCES += base/Pitch.cpp \
c@225 56 dsp/chromagram/Chromagram.cpp \
c@225 57 dsp/chromagram/ChromaProcess.cpp \
c@225 58 dsp/chromagram/ConstantQ.cpp \
c@225 59 dsp/maths/Correlation.cpp \
c@225 60 dsp/maths/MathUtilities.cpp \
c@225 61 dsp/onsets/DetectionFunction.cpp \
c@225 62 dsp/onsets/PeakPicking.cpp \
c@225 63 dsp/phasevocoder/PhaseVocoder.cpp \
c@225 64 dsp/rateconversion/Decimator.cpp \
c@225 65 dsp/signalconditioning/DFProcess.cpp \
c@225 66 dsp/signalconditioning/Filter.cpp \
c@225 67 dsp/signalconditioning/FiltFilt.cpp \
c@225 68 dsp/signalconditioning/Framer.cpp \
c@225 69 dsp/signalconditioning/Windowing.cpp \
c@225 70 dsp/tempotracking/TempoTrack.cpp \
c@225 71 dsp/tonal/ChangeDetectionFunction.cpp \
c@225 72 dsp/tonal/ChromaMatrix.cpp \
c@225 73 dsp/tonal/TCSgram.cpp \
c@225 74 dsp/tonal/TonalEstimator.cpp \
c@225 75 dsp/transforms/FFT.cpp \
c@225 76 dsp/transforms/Fourier.cpp