comparison chp.pro @ 556:91e91fd8e9c0

Further path fixes
author Chris Cannam
date Sun, 17 Feb 2019 13:45:23 +0000
parents 7ef7fa385d8e
children 77754355b37a
comparison
equal deleted inserted replaced
555:00aa19d02510 556:91e91fd8e9c0
11 CONFIG -= qt 11 CONFIG -= qt
12 CONFIG += plugin release warn_on 12 CONFIG += plugin release warn_on
13 13
14 TARGET = chp 14 TARGET = chp
15 15
16 INCLUDEPATH += vamp-plugin-sdk 16 INCLUDEPATH += $$PWD/vamp-plugin-sdk
17 17
18 win32-msvc* { 18 win32-msvc* {
19 LIBS += -EXPORT:vampGetPluginDescriptor 19 LIBS += -EXPORT:vampGetPluginDescriptor
20 } 20 }
21 win32-g++* { 21 win32-g++* {
22 LIBS += -Wl,--version-script=pyin/vamp-plugin.map 22 LIBS += -Wl,--version-script=$$PWD/pyin/vamp-plugin.map
23 } 23 }
24 linux* { 24 linux* {
25 LIBS += -Wl,--version-script=pyin/vamp-plugin.map 25 LIBS += -Wl,--version-script=$$PWD/pyin/vamp-plugin.map
26 } 26 }
27 macx* { 27 macx* {
28 LIBS += -export_symbols_list pyin/vamp-plugin.list 28 LIBS += -export_symbols_list $$PWD/pyin/vamp-plugin.list
29 } 29 }
30 30
31 SOURCES += \ 31 SOURCES += \
32 chp/ConstrainedHarmonicPeak.cpp \ 32 chp/ConstrainedHarmonicPeak.cpp \
33 chp/plugins.cpp \ 33 chp/plugins.cpp \