-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmatch.pro
More file actions
69 lines (55 loc) · 1.6 KB
/
match.pro
File metadata and controls
69 lines (55 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
TEMPLATE = lib
exists(config.pri) {
include(config.pri)
}
!exists(config.pri) {
include(noconfig.pri)
}
CONFIG -= qt
CONFIG += plugin no_plugin_name_prefix release warn_on
TARGET = match-vamp-plugin
OBJECTS_DIR = match/o
INCLUDEPATH += $$PWD/vamp-plugin-sdk
QMAKE_CXXFLAGS -= -Werror
DEFINES += USE_COMPACT_TYPES
win32-msvc* {
LIBS += -EXPORT:vampGetPluginDescriptor
}
win32-g++* {
LIBS += -Wl,--version-script=$$PWD/match/vamp-plugin.map
}
linux* {
LIBS += -Wl,--version-script=$$PWD/match/vamp-plugin.map
}
macx* {
LIBS += -exported_symbols_list $$PWD/match/vamp-plugin.list
}
SOURCES += \
match/src/DistanceMetric.cpp \
match/src/FeatureConditioner.cpp \
match/src/FeatureExtractor.cpp \
match/src/Finder.cpp \
match/src/FullDTW.cpp \
match/src/Matcher.cpp \
match/src/MatchFeatureFeeder.cpp \
match/src/MatchPipeline.cpp \
match/src/MatchVampPlugin.cpp \
match/src/Path.cpp \
match/src/SubsequenceMatchVampPlugin.cpp \
match/src/libmain.cpp \
vamp-plugin-sdk/src/vamp-sdk/FFT.cpp \
vamp-plugin-sdk/src/vamp-sdk/PluginAdapter.cpp \
vamp-plugin-sdk/src/vamp-sdk/RealTime.cpp
HEADERS += \
match/src/DistanceMetric.h \
match/src/FeatureConditioner.h \
match/src/FeatureExtractor.h \
match/src/Finder.h \
match/src/FullDTW.h \
match/src/Matcher.h \
match/src/MatchFeatureFeeder.h \
match/src/MatchPipeline.h \
match/src/MatchTypes.h \
match/src/MatchVampPlugin.h \
match/src/Path.h \
match/src/SubsequenceMatchVampPlugin.h