annotate qm-vamp-plugins.pro @ 63:b084e87b83e4

* Add README files for the various platform packages * Fix typo in cat file * Return simpler key names from key detector * Chromagram and constant Q default to unnormalized * Permit up to 48 bpo in constant Q
author Chris Cannam <c.cannam@qmul.ac.uk>
date Thu, 07 Feb 2008 10:03:04 +0000
parents 90fa946fda40
children 5f46f4b33fd1
rev   line source
c@3 1
c@0 2 TEMPLATE = lib
c@3 3
c@59 4 CONFIG += plugin warn_on release
c@3 5 CONFIG -= qt
c@3 6
c@63 7 linux-g++:QMAKE_CXXFLAGS_RELEASE += -DNDEBUG -O3 -fno-exceptions -fPIC -march=pentium3 -mfpmath=sse -msse -ffast-math
c@12 8
c@0 9 OBJECTS_DIR = tmp_obj
c@0 10 MOC_DIR = tmp_moc
c@0 11
c@3 12 INCLUDEPATH += ../vamp-plugin-sdk ../qm-dsp
c@4 13 LIBPATH += ../vamp-plugin-sdk/vamp-sdk ../qm-dsp
c@3 14
c@57 15 linux-g++:LIBS += -static-libgcc -Wl,-Bstatic -lqm-dsp -lvamp-sdk -L/usr/lib/atlas/sse -llapack -lblas -lg2c $(shell g++ -print-file-name=libstdc++.a) -Wl,-Bdynamic
c@37 16 #LIBS += -Wl,-Bstatic -lqm-dsp -lvamp-sdk -L/usr/lib/atlas/sse -lblas -llapack -lg2c -Wl,-Bdynamic
c@0 17
c@0 18 DEPENDPATH += plugins
c@0 19 INCLUDEPATH += . plugins
c@0 20
c@0 21 # Input
c@27 22 HEADERS += plugins/BeatTrack.h \
c@27 23 plugins/OnsetDetect.h \
c@0 24 plugins/ChromagramPlugin.h \
c@9 25 plugins/ConstantQSpectrogram.h \
c@21 26 plugins/KeyDetect.h \
c@45 27 plugins/MFCCPlugin.h \
c@37 28 plugins/SegmenterPlugin.h \
c@41 29 plugins/SimilarityPlugin.h \
c@0 30 plugins/TonalChangeDetect.h
c@27 31 SOURCES += plugins/BeatTrack.cpp \
c@27 32 plugins/OnsetDetect.cpp \
c@0 33 plugins/ChromagramPlugin.cpp \
c@9 34 plugins/ConstantQSpectrogram.cpp \
c@21 35 plugins/KeyDetect.cpp \
c@45 36 plugins/MFCCPlugin.cpp \
c@37 37 plugins/SegmenterPlugin.cpp \
c@41 38 plugins/SimilarityPlugin.cpp \
c@3 39 plugins/TonalChangeDetect.cpp \
c@3 40 ./libmain.cpp
c@37 41