To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / azi.pro
History | View | Annotate | Download (831 Bytes)
| 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 = azi |
||
| 16 | |||
| 17 | OBJECTS_DIR = azi/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/azi/vamp-plugin.map |
||
| 28 | } |
||
| 29 | linux* {
|
||
| 30 | LIBS += -Wl,--version-script=$$PWD/azi/vamp-plugin.map |
||
| 31 | } |
||
| 32 | macx* {
|
||
| 33 | LIBS += -exported_symbols_list $$PWD/azi/vamp-plugin.list |
||
| 34 | } |
||
| 35 | |||
| 36 | SOURCES += \ |
||
| 37 | azi/Azi.cpp \ |
||
| 38 | azi/plugins.cpp \ |
||
| 39 | vamp-plugin-sdk/src/vamp-sdk/FFT.cpp \ |
||
| 40 | vamp-plugin-sdk/src/vamp-sdk/PluginAdapter.cpp \ |
||
| 41 | vamp-plugin-sdk/src/vamp-sdk/RealTime.cpp |
||
| 42 | |||
| 43 | HEADERS += \ |
||
| 44 | azi/Azi.h |