To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / match.pro

History | View | Annotate | Download (1.6 KB)

1 136:5cf745be1767 Chris
2
TEMPLATE = lib
3
4
exists(config.pri) {
5
    include(config.pri)
6
}
7
8
!exists(config.pri) {
9
    include(noconfig.pri)
10
}
11
12
CONFIG -= qt
13
CONFIG += plugin no_plugin_name_prefix release warn_on
14
15
TARGET = match-vamp-plugin
16
17
OBJECTS_DIR = match/o
18
19
INCLUDEPATH += $$PWD/vamp-plugin-sdk
20
21 153:1ade7ee67d04 Chris
QMAKE_CXXFLAGS -= -Werror
22 136:5cf745be1767 Chris
23
DEFINES += USE_COMPACT_TYPES
24
25
win32-msvc* {
26
    LIBS += -EXPORT:vampGetPluginDescriptor
27
}
28
win32-g++* {
29
    LIBS += -Wl,--version-script=$$PWD/match/vamp-plugin.map
30
}
31
linux* {
32
    LIBS += -Wl,--version-script=$$PWD/match/vamp-plugin.map
33
}
34
macx* {
35
    LIBS += -exported_symbols_list $$PWD/match/vamp-plugin.list
36
}
37
38
SOURCES += \
39
    match/src/DistanceMetric.cpp \
40
    match/src/FeatureConditioner.cpp \
41
    match/src/FeatureExtractor.cpp \
42
    match/src/Finder.cpp \
43 453:a083b53c85d6 Chris
    match/src/FullDTW.cpp \
44 136:5cf745be1767 Chris
    match/src/Matcher.cpp \
45
    match/src/MatchFeatureFeeder.cpp \
46
    match/src/MatchPipeline.cpp \
47
    match/src/MatchVampPlugin.cpp \
48
    match/src/Path.cpp \
49 453:a083b53c85d6 Chris
    match/src/SubsequenceMatchVampPlugin.cpp \
50
    match/src/libmain.cpp \
51 136:5cf745be1767 Chris
    vamp-plugin-sdk/src/vamp-sdk/FFT.cpp \
52
    vamp-plugin-sdk/src/vamp-sdk/PluginAdapter.cpp \
53
    vamp-plugin-sdk/src/vamp-sdk/RealTime.cpp
54
55
HEADERS += \
56
    match/src/DistanceMetric.h \
57
    match/src/FeatureConditioner.h \
58
    match/src/FeatureExtractor.h \
59
    match/src/Finder.h \
60 453:a083b53c85d6 Chris
    match/src/FullDTW.h \
61 136:5cf745be1767 Chris
    match/src/Matcher.h \
62
    match/src/MatchFeatureFeeder.h \
63
    match/src/MatchPipeline.h \
64
    match/src/MatchTypes.h \
65
    match/src/MatchVampPlugin.h \
66 453:a083b53c85d6 Chris
    match/src/Path.h \
67
    match/src/SubsequenceMatchVampPlugin.h
68 136:5cf745be1767 Chris