annotate qm-vamp-plugins.pro @ 124:7e5fc22c9ab1

* Fix beat counts prior to first bar
author Chris Cannam <c.cannam@qmul.ac.uk>
date Thu, 25 Jun 2009 13:28:19 +0000
parents 25ef867820ba
children dd01b0a81f1b
rev   line source
c@3 1
c@0 2 TEMPLATE = lib
c@104 3 CONFIG += plugin warn_on release
c@3 4 CONFIG -= qt
c@3 5
c@116 6 linux-g++* {
c@123 7 QMAKE_CXXFLAGS_RELEASE += -DNDEBUG -O3 -fno-exceptions -fPIC -ffast-math -msse -ftree-vectorize -fomit-frame-pointer
c@116 8 DEFINES += USE_PTHREADS
c@116 9 INCLUDEPATH += ../vamp-plugin-sdk ../qm-dsp
c@116 10 LIBPATH += ../vamp-plugin-sdk/vamp-sdk ../qm-dsp
c@116 11 }
c@104 12
c@116 13 linux-g++ {
c@116 14 LIBS += -static-libgcc -Wl,-Bstatic -lqm-dsp -lvamp-sdk -L/usr/lib/sse2/atlas -L/usr/lib/atlas/sse -llapack -lblas $$system(g++ -print-file-name=libstdc++.a) -lc -Wl,-Bdynamic -lpthread -Wl,--version-script=vamp-plugin.map
c@116 15 }
c@104 16
c@116 17 linux-g++-64 {
c@123 18 QMAKE_CXXFLAGS_RELEASE += -msse2
c@124 19 LIBS += -Lbuild/linux/amd64 -Wl,-Bstatic -lqm-dsp -lvamp-sdk -llapack -lcblas -latlas -lc -Wl,-Bdynamic -lpthread -Wl,--version-script=vamp-plugin.map
c@116 20 }
c@116 21
c@116 22 macx-g++* {
c@117 23 QMAKE_MAC_SDK=/Developer/SDKs/MacOSX10.4u.sdk
c@117 24 QMAKE_CXXFLAGS_RELEASE += -O2 -g0
c@117 25 CONFIG += x86 ppc
c@116 26 DEFINES += USE_PTHREADS
c@117 27 LIBS += -lqm-dsp -lvamp-sdk -framework Accelerate -lpthread -exported_symbols_list=vamp-plugin.list
c@116 28 INCLUDEPATH += ../vamp-plugin-sdk ../qm-dsp
c@117 29 LIBPATH += ../include ../lib ../qm-dsp
c@116 30 }
c@116 31
c@116 32 win32-x-g++ {
c@116 33 QMAKE_CXXFLAGS_RELEASE += -DNDEBUG -O2 -march=pentium3 -msse
c@116 34 INCLUDEPATH += ../include ../qm-dsp
c@116 35 LIBPATH += ./build/mingw32 ../lib ../qm-dsp ../qm-dsp/release
c@116 36 LIBS += -shared -Wl,-Bstatic -lqm-dsp -lvamp-sdk -llapack -lcblas -latlas -lf77blas -lg2cstubs -Wl,-Bdynamic -Wl,--version-script=vamp-plugin.map
c@116 37 }
c@12 38
c@0 39 OBJECTS_DIR = tmp_obj
c@0 40 MOC_DIR = tmp_moc
c@0 41
c@0 42 DEPENDPATH += plugins
c@0 43 INCLUDEPATH += . plugins
c@0 44
c@0 45 # Input
c@92 46 HEADERS += plugins/AdaptiveSpectrogram.h \
c@92 47 plugins/BarBeatTrack.h \
c@89 48 plugins/BeatTrack.h \
c@97 49 plugins/DWT.h \
c@27 50 plugins/OnsetDetect.h \
c@0 51 plugins/ChromagramPlugin.h \
c@9 52 plugins/ConstantQSpectrogram.h \
c@21 53 plugins/KeyDetect.h \
c@45 54 plugins/MFCCPlugin.h \
c@37 55 plugins/SegmenterPlugin.h \
c@41 56 plugins/SimilarityPlugin.h \
c@120 57 plugins/TonalChangeDetect.h \
c@120 58 plugins/Transcription.h
c@70 59 SOURCES += g2cstubs.c \
c@92 60 plugins/AdaptiveSpectrogram.cpp \
c@89 61 plugins/BarBeatTrack.cpp \
c@70 62 plugins/BeatTrack.cpp \
c@97 63 plugins/DWT.cpp \
c@27 64 plugins/OnsetDetect.cpp \
c@0 65 plugins/ChromagramPlugin.cpp \
c@9 66 plugins/ConstantQSpectrogram.cpp \
c@21 67 plugins/KeyDetect.cpp \
c@45 68 plugins/MFCCPlugin.cpp \
c@37 69 plugins/SegmenterPlugin.cpp \
c@41 70 plugins/SimilarityPlugin.cpp \
c@3 71 plugins/TonalChangeDetect.cpp \
c@120 72 plugins/Transcription.cpp \
c@3 73 ./libmain.cpp
c@37 74