annotate build/mingw32/qm-dsp.pro @ 515:08bcc06c38ec tip master

Remove fast-math
author Chris Cannam <cannam@all-day-breakfast.com>
date Tue, 28 Jan 2020 15:27:37 +0000
parents f26e2d35dde9
children
rev   line source
c@261 1
c@261 2 TEMPLATE = lib
c@261 3 CONFIG += warn_on staticlib release
c@261 4 CONFIG -= qt
c@261 5 OBJECTS_DIR = tmp_obj
c@261 6 MOC_DIR = tmp_moc
c@261 7
c@261 8 linux-g++:QMAKE_CXXFLAGS_RELEASE += -DNDEBUG -O3 -march=pentium4 -msse -msse2
c@261 9 QMAKE_CXXFLAGS_RELEASE += -DNDEBUG -O2 -march=pentium3 -msse
c@261 10
c@261 11 #DEPENDPATH += base \
c@261 12 # dsp/chromagram \
c@261 13 # dsp/keydetection \
c@261 14 # dsp/maths \
c@261 15 # dsp/onsets \
c@261 16 # dsp/phasevocoder \
c@261 17 # dsp/rateconversion \
c@261 18 # dsp/signalconditioning \
c@261 19 # dsp/tempotracking \
c@261 20 # dsp/tonal \
c@261 21 # dsp/transforms
c@261 22 INCLUDEPATH += . include
c@261 23
c@261 24 # Input
c@261 25 HEADERS += base/Pitch.h \
c@261 26 base/Window.h \
c@261 27 dsp/chromagram/Chromagram.h \
c@261 28 dsp/chromagram/ChromaProcess.h \
c@261 29 dsp/chromagram/ConstantQ.h \
c@261 30 dsp/keydetection/GetKeyMode.h \
c@261 31 dsp/mfcc/MFCC.h \
c@261 32 dsp/onsets/DetectionFunction.h \
c@261 33 dsp/onsets/PeakPicking.h \
c@261 34 dsp/phasevocoder/PhaseVocoder.h \
c@261 35 dsp/rateconversion/Decimator.h \
c@261 36 dsp/rhythm/BeatSpectrum.h \
c@261 37 dsp/segmentation/cluster_melt.h \
c@261 38 dsp/segmentation/ClusterMeltSegmenter.h \
c@261 39 dsp/segmentation/cluster_segmenter.h \
c@261 40 dsp/segmentation/SavedFeatureSegmenter.h \
c@261 41 dsp/segmentation/Segmenter.h \
c@261 42 dsp/segmentation/segment.h \
c@261 43 dsp/signalconditioning/DFProcess.h \
c@261 44 dsp/signalconditioning/Filter.h \
c@261 45 dsp/signalconditioning/FiltFilt.h \
c@261 46 dsp/signalconditioning/Framer.h \
c@307 47 dsp/tempotracking/DownBeat.h \
c@261 48 dsp/tempotracking/TempoTrack.h \
c@307 49 dsp/tempotracking/TempoTrackV2.h \
c@261 50 dsp/tonal/ChangeDetectionFunction.h \
c@261 51 dsp/tonal/TCSgram.h \
c@261 52 dsp/tonal/TonalEstimator.h \
c@261 53 dsp/transforms/FFT.h \
c@307 54 dsp/transforms/kissfft/kiss_fft.h \
c@307 55 dsp/transforms/kissfft/kiss_fftr.h \
c@307 56 dsp/transforms/kissfft/_kiss_fft_guts.h \
c@307 57 dsp/wavelet/Wavelet.h \
c@261 58 hmm/hmm.h \
c@261 59 maths/Correlation.h \
c@261 60 maths/CosineDistance.h \
c@261 61 maths/Histogram.h \
c@261 62 maths/KLDivergence.h \
c@261 63 maths/MathAliases.h \
c@261 64 maths/MathUtilities.h \
c@261 65 maths/Polyfit.h \
c@307 66 maths/pca/pca.h \
c@307 67 thread/AsynchronousTask.h \
c@307 68 thread/BlockAllocator.h \
c@307 69 thread/Thread.h
c@261 70 SOURCES += base/Pitch.cpp \
c@261 71 dsp/chromagram/Chromagram.cpp \
c@261 72 dsp/chromagram/ChromaProcess.cpp \
c@261 73 dsp/chromagram/ConstantQ.cpp \
c@261 74 dsp/keydetection/GetKeyMode.cpp \
c@261 75 dsp/mfcc/MFCC.cpp \
c@261 76 dsp/onsets/DetectionFunction.cpp \
c@261 77 dsp/onsets/PeakPicking.cpp \
c@261 78 dsp/phasevocoder/PhaseVocoder.cpp \
c@261 79 dsp/rateconversion/Decimator.cpp \
c@261 80 dsp/rhythm/BeatSpectrum.cpp \
c@261 81 dsp/segmentation/cluster_melt.c \
c@261 82 dsp/segmentation/ClusterMeltSegmenter.cpp \
c@261 83 dsp/segmentation/cluster_segmenter.c \
c@261 84 dsp/segmentation/SavedFeatureSegmenter.cpp \
c@261 85 dsp/segmentation/Segmenter.cpp \
c@261 86 dsp/signalconditioning/DFProcess.cpp \
c@261 87 dsp/signalconditioning/Filter.cpp \
c@261 88 dsp/signalconditioning/FiltFilt.cpp \
c@261 89 dsp/signalconditioning/Framer.cpp \
c@307 90 dsp/tempotracking/DownBeat.cpp \
c@261 91 dsp/tempotracking/TempoTrack.cpp \
c@307 92 dsp/tempotracking/TempoTrackV2.cpp \
c@261 93 dsp/tonal/ChangeDetectionFunction.cpp \
c@261 94 dsp/tonal/TCSgram.cpp \
c@261 95 dsp/tonal/TonalEstimator.cpp \
c@261 96 dsp/transforms/FFT.cpp \
c@307 97 dsp/transforms/kissfft/kiss_fft.c \
c@307 98 dsp/transforms/kissfft/kiss_fftr.c \
c@307 99 dsp/wavelet/Wavelet.cpp \
c@261 100 hmm/hmm.c \
c@261 101 maths/Correlation.cpp \
c@261 102 maths/CosineDistance.cpp \
c@261 103 maths/KLDivergence.cpp \
c@261 104 maths/MathUtilities.cpp \
c@307 105 maths/pca/pca.c \
c@307 106 thread/Thread.cpp