To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / nnls-chroma.pro
History | View | Annotate | Download (1.25 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 = nnls-chroma |
||
| 16 | |||
| 17 | OBJECTS_DIR = nnls-chroma/o |
||
| 18 | |||
| 19 | INCLUDEPATH += $$PWD/vamp-plugin-sdk |
||
| 20 | |||
| 21 | QMAKE_CXXFLAGS -= -Werror |
||
| 22 | |||
| 23 | win32-msvc* {
|
||
| 24 | LIBS += -EXPORT:vampGetPluginDescriptor |
||
| 25 | } |
||
| 26 | win32-g++* {
|
||
| 27 | LIBS += -Wl,--version-script=$$PWD/nnls-chroma/vamp-plugin.map |
||
| 28 | } |
||
| 29 | linux* {
|
||
| 30 | LIBS += -Wl,--version-script=$$PWD/nnls-chroma/vamp-plugin.map |
||
| 31 | } |
||
| 32 | macx* {
|
||
| 33 | LIBS += -exported_symbols_list $$PWD/nnls-chroma/vamp-plugin.list |
||
| 34 | } |
||
| 35 | |||
| 36 | SOURCES += \ |
||
| 37 | nnls-chroma/chromamethods.cpp \ |
||
| 38 | nnls-chroma/NNLSBase.cpp \ |
||
| 39 | nnls-chroma/NNLSChroma.cpp \ |
||
| 40 | nnls-chroma/Chordino.cpp \ |
||
| 41 | nnls-chroma/Tuning.cpp \ |
||
| 42 | nnls-chroma/plugins.cpp \ |
||
| 43 | nnls-chroma/nnls.c \ |
||
| 44 | nnls-chroma/viterbi.cpp \ |
||
| 45 | vamp-plugin-sdk/src/vamp-sdk/FFT.cpp \ |
||
| 46 | vamp-plugin-sdk/src/vamp-sdk/PluginAdapter.cpp \ |
||
| 47 | vamp-plugin-sdk/src/vamp-sdk/RealTime.cpp |
||
| 48 | |||
| 49 | HEADERS += \ |
||
| 50 | nnls-chroma/chromamethods.h \ |
||
| 51 | nnls-chroma/NNLSBase.h \ |
||
| 52 | nnls-chroma/NNLSChroma.h \ |
||
| 53 | nnls-chroma/Chordino.h \ |
||
| 54 | nnls-chroma/Tuning.h \ |
||
| 55 | nnls-chroma/nnls.h \ |
||
| 56 | nnls-chroma/viterbi.h |