Mercurial > hg > qm-vamp-plugins
annotate build/linux/amd64/qm-vamp-plugins.pro @ 135:dcf5800f0f00
* Add GPL
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Mon, 13 Dec 2010 14:03:46 +0000 |
parents | b5594645adab |
children |
rev | line source |
---|---|
c@84 | 1 |
c@84 | 2 TEMPLATE = lib |
c@84 | 3 |
c@84 | 4 CONFIG += plugin warn_on release |
c@84 | 5 CONFIG -= qt |
c@84 | 6 |
c@84 | 7 OBJECTS_DIR = tmp_obj |
c@84 | 8 MOC_DIR = tmp_moc |
c@84 | 9 |
c@84 | 10 INCLUDEPATH += build/linux/amd64 ../vamp-plugin-sdk ../qm-dsp |
c@84 | 11 LIBPATH += build/linux/amd64 ../vamp-plugin-sdk/src ../qm-dsp |
c@84 | 12 |
c@84 | 13 LIBS += -static-libgcc -Wl,-Bstatic -lqm-dsp -lvamp-sdk -llapack -lcblas -latlas -lc -Wl,-Bdynamic -Wl,--version-script=vamp-plugin.map |
c@84 | 14 |
c@84 | 15 DEPENDPATH += plugins |
c@84 | 16 INCLUDEPATH += . plugins |
c@84 | 17 |
c@84 | 18 # Input |
c@84 | 19 HEADERS += plugins/BeatTrack.h \ |
c@84 | 20 plugins/OnsetDetect.h \ |
c@84 | 21 plugins/ChromagramPlugin.h \ |
c@84 | 22 plugins/ConstantQSpectrogram.h \ |
c@84 | 23 plugins/KeyDetect.h \ |
c@84 | 24 plugins/MFCCPlugin.h \ |
c@84 | 25 plugins/SegmenterPlugin.h \ |
c@84 | 26 plugins/SimilarityPlugin.h \ |
c@84 | 27 plugins/TonalChangeDetect.h |
c@84 | 28 SOURCES += g2cstubs.c \ |
c@84 | 29 plugins/BeatTrack.cpp \ |
c@84 | 30 plugins/OnsetDetect.cpp \ |
c@84 | 31 plugins/ChromagramPlugin.cpp \ |
c@84 | 32 plugins/ConstantQSpectrogram.cpp \ |
c@84 | 33 plugins/KeyDetect.cpp \ |
c@84 | 34 plugins/MFCCPlugin.cpp \ |
c@84 | 35 plugins/SegmenterPlugin.cpp \ |
c@84 | 36 plugins/SimilarityPlugin.cpp \ |
c@84 | 37 plugins/TonalChangeDetect.cpp \ |
c@84 | 38 ./libmain.cpp |
c@84 | 39 |