Mercurial > hg > tony
annotate chp.pro @ 698:ee97c742d184 tip
Default branch is now named default on git as well as hg, in case we ever want to switch to mirroring in the other direction
author | Chris Cannam |
---|---|
date | Thu, 27 Aug 2020 15:58:43 +0100 |
parents | 13b0abef20e0 |
children |
rev | line source |
---|---|
Chris@602 | 1 TEMPLATE = lib |
Chris@602 | 2 |
Chris@602 | 3 exists(config.pri) { |
Chris@602 | 4 include(config.pri) |
Chris@602 | 5 } |
Chris@602 | 6 |
Chris@602 | 7 !exists(config.pri) { |
Chris@602 | 8 include(noconfig.pri) |
Chris@602 | 9 } |
Chris@602 | 10 |
Chris@602 | 11 CONFIG -= qt |
Chris@602 | 12 CONFIG += plugin no_plugin_name_prefix release warn_on |
Chris@602 | 13 |
Chris@602 | 14 TARGET = chp |
Chris@602 | 15 |
Chris@602 | 16 INCLUDEPATH += $$PWD/vamp-plugin-sdk |
Chris@602 | 17 |
Chris@602 | 18 win32-msvc* { |
Chris@602 | 19 LIBS += -EXPORT:vampGetPluginDescriptor |
Chris@602 | 20 } |
Chris@602 | 21 win32-g++* { |
Chris@602 | 22 LIBS += -Wl,--version-script=$$PWD/pyin/vamp-plugin.map |
Chris@602 | 23 } |
Chris@602 | 24 linux* { |
Chris@602 | 25 LIBS += -Wl,--version-script=$$PWD/pyin/vamp-plugin.map |
Chris@602 | 26 } |
Chris@602 | 27 macx* { |
Chris@602 | 28 LIBS += -exported_symbols_list $$PWD/pyin/vamp-plugin.list |
Chris@602 | 29 } |
Chris@602 | 30 |
Chris@602 | 31 SOURCES += \ |
Chris@602 | 32 chp/ConstrainedHarmonicPeak.cpp \ |
Chris@602 | 33 chp/plugins.cpp \ |
Chris@602 | 34 vamp-plugin-sdk/src/vamp-sdk/FFT.cpp \ |
Chris@602 | 35 vamp-plugin-sdk/src/vamp-sdk/PluginAdapter.cpp \ |
Chris@602 | 36 vamp-plugin-sdk/src/vamp-sdk/RealTime.cpp |
Chris@602 | 37 |
Chris@602 | 38 HEADERS += \ |
Chris@602 | 39 chp/ConstrainedHarmonicPeak.h |
Chris@602 | 40 |