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 @ 136:5cf745be1767

History | View | Annotate | Download (1.44 KB)

1

    
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
               QMAKE_CXXFLAGS -= -Werror
22

    
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
    match/src/Matcher.cpp \
44
    match/src/MatchFeatureFeeder.cpp \
45
    match/src/MatchPipeline.cpp \
46
    match/src/MatchVampPlugin.cpp \
47
    match/src/Path.cpp \
48
    vamp-plugin-sdk/src/vamp-sdk/FFT.cpp \
49
    vamp-plugin-sdk/src/vamp-sdk/PluginAdapter.cpp \
50
    vamp-plugin-sdk/src/vamp-sdk/RealTime.cpp
51

    
52
HEADERS += \
53
    match/src/DistanceMetric.h \
54
    match/src/FeatureConditioner.h \
55
    match/src/FeatureExtractor.h \
56
    match/src/Finder.h \
57
    match/src/Matcher.h \
58
    match/src/MatchFeatureFeeder.h \
59
    match/src/MatchPipeline.h \
60
    match/src/MatchTypes.h \
61
    match/src/MatchVampPlugin.h \
62
    match/src/Path.h
63

    
64