c@3
|
1
|
c@0
|
2 TEMPLATE = lib
|
c@3
|
3
|
c@86
|
4 CONFIG += plugin warn_on debug
|
c@3
|
5 CONFIG -= qt
|
c@3
|
6
|
c@75
|
7 linux-g++:QMAKE_CXXFLAGS_RELEASE += -DNDEBUG -O3 -fPIC -march=pentium3 -mfpmath=sse -msse
|
c@86
|
8 linux-g++-64:QMAKE_CXXFLAGS_RELEASE += -DNDEBUG -O3 -fPIC -ffast-math -fno-exceptions
|
c@12
|
9
|
c@0
|
10 OBJECTS_DIR = tmp_obj
|
c@0
|
11 MOC_DIR = tmp_moc
|
c@0
|
12
|
c@3
|
13 INCLUDEPATH += ../vamp-plugin-sdk ../qm-dsp
|
c@4
|
14 LIBPATH += ../vamp-plugin-sdk/vamp-sdk ../qm-dsp
|
c@3
|
15
|
c@70
|
16 linux-g++: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 -Wl,--version-script=vamp-plugin.map
|
c@70
|
17
|
c@86
|
18 linux-g++-64:LIBS += -Lbuild/linux/amd64 -Wl,-Bstatic -lqm-dsp -lvamp-sdk -llapack -lcblas -latlas -Wl,-Bdynamic -Wl,--version-script=vamp-plugin.map
|
c@86
|
19
|
c@80
|
20 macx-g++:LIBS += -framework Accelerate -exported_symbols_list=vamp-plugin.list
|
c@70
|
21
|
c@70
|
22 #LIBS += -Wl,-Bstatic -lqm-dsp -lvamp-sdk -L/usr/lib/atlas/sse -lblas -llapack -Wl,-Bdynamic
|
c@0
|
23
|
c@0
|
24 DEPENDPATH += plugins
|
c@0
|
25 INCLUDEPATH += . plugins
|
c@0
|
26
|
c@0
|
27 # Input
|
c@89
|
28 HEADERS += plugins/BarBeatTrack.h \
|
c@89
|
29 plugins/BeatTrack.h \
|
c@27
|
30 plugins/OnsetDetect.h \
|
c@0
|
31 plugins/ChromagramPlugin.h \
|
c@9
|
32 plugins/ConstantQSpectrogram.h \
|
c@21
|
33 plugins/KeyDetect.h \
|
c@45
|
34 plugins/MFCCPlugin.h \
|
c@37
|
35 plugins/SegmenterPlugin.h \
|
c@41
|
36 plugins/SimilarityPlugin.h \
|
c@0
|
37 plugins/TonalChangeDetect.h
|
c@70
|
38 SOURCES += g2cstubs.c \
|
c@89
|
39 plugins/BarBeatTrack.cpp \
|
c@70
|
40 plugins/BeatTrack.cpp \
|
c@27
|
41 plugins/OnsetDetect.cpp \
|
c@0
|
42 plugins/ChromagramPlugin.cpp \
|
c@9
|
43 plugins/ConstantQSpectrogram.cpp \
|
c@21
|
44 plugins/KeyDetect.cpp \
|
c@45
|
45 plugins/MFCCPlugin.cpp \
|
c@37
|
46 plugins/SegmenterPlugin.cpp \
|
c@41
|
47 plugins/SimilarityPlugin.cpp \
|
c@3
|
48 plugins/TonalChangeDetect.cpp \
|
c@3
|
49 ./libmain.cpp
|
c@37
|
50
|