summaryrefslogtreecommitdiff
path: root/libs/qm-dsp/build/mingw32/qm-dsp.pro
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-03-02 12:37:39 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-03-02 12:37:39 +0000
commit3deba1921bcf5bddd8bea9846a203c92b6c9239d (patch)
tree8b2e00405337396918ff28e282df14e958b84bb9 /libs/qm-dsp/build/mingw32/qm-dsp.pro
parentfa41cfef580b2c8c04adec5b47d6cfa415ca6251 (diff)
add queen mary DSP library
git-svn-id: svn://localhost/ardour2/branches/3.0@9029 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/qm-dsp/build/mingw32/qm-dsp.pro')
-rw-r--r--libs/qm-dsp/build/mingw32/qm-dsp.pro106
1 files changed, 106 insertions, 0 deletions
diff --git a/libs/qm-dsp/build/mingw32/qm-dsp.pro b/libs/qm-dsp/build/mingw32/qm-dsp.pro
new file mode 100644
index 0000000000..62f8df59ed
--- /dev/null
+++ b/libs/qm-dsp/build/mingw32/qm-dsp.pro
@@ -0,0 +1,106 @@
+
+TEMPLATE = lib
+CONFIG += warn_on staticlib release
+CONFIG -= qt
+OBJECTS_DIR = tmp_obj
+MOC_DIR = tmp_moc
+
+linux-g++:QMAKE_CXXFLAGS_RELEASE += -DNDEBUG -O3 -march=pentium4 -msse -msse2
+QMAKE_CXXFLAGS_RELEASE += -DNDEBUG -O2 -march=pentium3 -msse
+
+#DEPENDPATH += base \
+# dsp/chromagram \
+# dsp/keydetection \
+# dsp/maths \
+# dsp/onsets \
+# dsp/phasevocoder \
+# dsp/rateconversion \
+# dsp/signalconditioning \
+# dsp/tempotracking \
+# dsp/tonal \
+# dsp/transforms
+INCLUDEPATH += . include
+
+# Input
+HEADERS += base/Pitch.h \
+ base/Window.h \
+ dsp/chromagram/Chromagram.h \
+ dsp/chromagram/ChromaProcess.h \
+ dsp/chromagram/ConstantQ.h \
+ dsp/keydetection/GetKeyMode.h \
+ dsp/mfcc/MFCC.h \
+ dsp/onsets/DetectionFunction.h \
+ dsp/onsets/PeakPicking.h \
+ dsp/phasevocoder/PhaseVocoder.h \
+ dsp/rateconversion/Decimator.h \
+ dsp/rhythm/BeatSpectrum.h \
+ dsp/segmentation/cluster_melt.h \
+ dsp/segmentation/ClusterMeltSegmenter.h \
+ dsp/segmentation/cluster_segmenter.h \
+ dsp/segmentation/SavedFeatureSegmenter.h \
+ dsp/segmentation/Segmenter.h \
+ dsp/segmentation/segment.h \
+ dsp/signalconditioning/DFProcess.h \
+ dsp/signalconditioning/Filter.h \
+ dsp/signalconditioning/FiltFilt.h \
+ dsp/signalconditioning/Framer.h \
+ dsp/tempotracking/DownBeat.h \
+ dsp/tempotracking/TempoTrack.h \
+ dsp/tempotracking/TempoTrackV2.h \
+ dsp/tonal/ChangeDetectionFunction.h \
+ dsp/tonal/TCSgram.h \
+ dsp/tonal/TonalEstimator.h \
+ dsp/transforms/FFT.h \
+ dsp/transforms/kissfft/kiss_fft.h \
+ dsp/transforms/kissfft/kiss_fftr.h \
+ dsp/transforms/kissfft/_kiss_fft_guts.h \
+ dsp/wavelet/Wavelet.h \
+ hmm/hmm.h \
+ maths/Correlation.h \
+ maths/CosineDistance.h \
+ maths/Histogram.h \
+ maths/KLDivergence.h \
+ maths/MathAliases.h \
+ maths/MathUtilities.h \
+ maths/Polyfit.h \
+ maths/pca/pca.h \
+ thread/AsynchronousTask.h \
+ thread/BlockAllocator.h \
+ thread/Thread.h
+SOURCES += base/Pitch.cpp \
+ dsp/chromagram/Chromagram.cpp \
+ dsp/chromagram/ChromaProcess.cpp \
+ dsp/chromagram/ConstantQ.cpp \
+ dsp/keydetection/GetKeyMode.cpp \
+ dsp/mfcc/MFCC.cpp \
+ dsp/onsets/DetectionFunction.cpp \
+ dsp/onsets/PeakPicking.cpp \
+ dsp/phasevocoder/PhaseVocoder.cpp \
+ dsp/rateconversion/Decimator.cpp \
+ dsp/rhythm/BeatSpectrum.cpp \
+ dsp/segmentation/cluster_melt.c \
+ dsp/segmentation/ClusterMeltSegmenter.cpp \
+ dsp/segmentation/cluster_segmenter.c \
+ dsp/segmentation/SavedFeatureSegmenter.cpp \
+ dsp/segmentation/Segmenter.cpp \
+ dsp/signalconditioning/DFProcess.cpp \
+ dsp/signalconditioning/Filter.cpp \
+ dsp/signalconditioning/FiltFilt.cpp \
+ dsp/signalconditioning/Framer.cpp \
+ dsp/tempotracking/DownBeat.cpp \
+ dsp/tempotracking/TempoTrack.cpp \
+ dsp/tempotracking/TempoTrackV2.cpp \
+ dsp/tonal/ChangeDetectionFunction.cpp \
+ dsp/tonal/TCSgram.cpp \
+ dsp/tonal/TonalEstimator.cpp \
+ dsp/transforms/FFT.cpp \
+ dsp/transforms/kissfft/kiss_fft.c \
+ dsp/transforms/kissfft/kiss_fftr.c \
+ dsp/wavelet/Wavelet.cpp \
+ hmm/hmm.c \
+ maths/Correlation.cpp \
+ maths/CosineDistance.cpp \
+ maths/KLDivergence.cpp \
+ maths/MathUtilities.cpp \
+ maths/pca/pca.c \
+ thread/Thread.cpp