c@260: QMAKE_MAC_SDK=/Developer/SDKs/MacOSX10.4u.sdk c@260: TEMPLATE = lib c@260: CONFIG += release warn_on staticlib x86 ppc c@260: CONFIG -= qt c@260: OBJECTS_DIR = tmp_obj c@260: MOC_DIR = tmp_moc c@260: QMAKE_CXXFLAGS_RELEASE += -O2 -g0 c@260: c@260: linux-g++:QMAKE_CXXFLAGS_RELEASE += -DNDEBUG -O3 -march=pentium4 -msse -msse2 c@260: c@260: #DEPENDPATH += base \ c@260: # dsp/chromagram \ c@260: # dsp/keydetection \ c@260: # dsp/maths \ c@260: # dsp/onsets \ c@260: # dsp/phasevocoder \ c@260: # dsp/rateconversion \ c@260: # dsp/signalconditioning \ c@260: # dsp/tempotracking \ c@260: # dsp/tonal \ c@260: # dsp/transforms c@260: INCLUDEPATH += . include c@260: c@260: # Input c@260: HEADERS += base/Pitch.h \ c@260: base/Window.h \ c@260: dsp/chromagram/Chromagram.h \ c@260: dsp/chromagram/ChromaProcess.h \ c@260: dsp/chromagram/ConstantQ.h \ c@260: dsp/keydetection/GetKeyMode.h \ c@260: dsp/mfcc/MFCC.h \ c@260: dsp/onsets/DetectionFunction.h \ c@260: dsp/onsets/PeakPicking.h \ c@260: dsp/phasevocoder/PhaseVocoder.h \ c@260: dsp/rateconversion/Decimator.h \ c@260: dsp/rhythm/BeatSpectrum.h \ c@260: dsp/segmentation/cluster_melt.h \ c@260: dsp/segmentation/ClusterMeltSegmenter.h \ c@260: dsp/segmentation/cluster_segmenter.h \ c@260: dsp/segmentation/SavedFeatureSegmenter.h \ c@260: dsp/segmentation/Segmenter.h \ c@260: dsp/segmentation/segment.h \ c@260: dsp/signalconditioning/DFProcess.h \ c@260: dsp/signalconditioning/Filter.h \ c@260: dsp/signalconditioning/FiltFilt.h \ c@260: dsp/signalconditioning/Framer.h \ c@260: dsp/tempotracking/TempoTrack.h \ c@260: dsp/tonal/ChangeDetectionFunction.h \ c@260: dsp/tonal/TCSgram.h \ c@260: dsp/tonal/TonalEstimator.h \ c@260: dsp/transforms/FFT.h \ c@260: hmm/hmm.h \ c@260: maths/Correlation.h \ c@260: maths/CosineDistance.h \ c@260: maths/Histogram.h \ c@260: maths/KLDivergence.h \ c@260: maths/MathAliases.h \ c@260: maths/MathUtilities.h \ c@260: maths/Polyfit.h \ c@260: maths/pca/pca.h c@260: SOURCES += base/Pitch.cpp \ c@260: dsp/chromagram/Chromagram.cpp \ c@260: dsp/chromagram/ChromaProcess.cpp \ c@260: dsp/chromagram/ConstantQ.cpp \ c@260: dsp/keydetection/GetKeyMode.cpp \ c@260: dsp/mfcc/MFCC.cpp \ c@260: dsp/onsets/DetectionFunction.cpp \ c@260: dsp/onsets/PeakPicking.cpp \ c@260: dsp/phasevocoder/PhaseVocoder.cpp \ c@260: dsp/rateconversion/Decimator.cpp \ c@260: dsp/rhythm/BeatSpectrum.cpp \ c@260: dsp/segmentation/cluster_melt.c \ c@260: dsp/segmentation/ClusterMeltSegmenter.cpp \ c@260: dsp/segmentation/cluster_segmenter.c \ c@260: dsp/segmentation/SavedFeatureSegmenter.cpp \ c@260: dsp/segmentation/Segmenter.cpp \ c@260: dsp/signalconditioning/DFProcess.cpp \ c@260: dsp/signalconditioning/Filter.cpp \ c@260: dsp/signalconditioning/FiltFilt.cpp \ c@260: dsp/signalconditioning/Framer.cpp \ c@260: dsp/tempotracking/TempoTrack.cpp \ c@260: dsp/tonal/ChangeDetectionFunction.cpp \ c@260: dsp/tonal/TCSgram.cpp \ c@260: dsp/tonal/TonalEstimator.cpp \ c@260: dsp/transforms/FFT.cpp \ c@260: hmm/hmm.c \ c@260: maths/Correlation.cpp \ c@260: maths/CosineDistance.cpp \ c@260: maths/KLDivergence.cpp \ c@260: maths/MathUtilities.cpp \ c@260: maths/pca/pca.c