Mercurial > hg > sonic-annotator
comparison base.pri @ 260:382f33b7f00e piper-nopiper
Subrepo updates, and update the build scripts accordingly
author | Chris Cannam |
---|---|
date | Mon, 21 Nov 2016 17:08:34 +0000 |
parents | |
children | 6122159556bd |
comparison
equal
deleted
inserted
replaced
258:857ce6ecb163 | 260:382f33b7f00e |
---|---|
1 | |
2 SV_INCLUDEPATH = \ | |
3 . \ | |
4 bqvec \ | |
5 bqvec/bqvec \ | |
6 bqfft \ | |
7 piper-cpp \ | |
8 dataquay \ | |
9 dataquay/dataquay \ | |
10 svcore \ | |
11 svcore/data \ | |
12 svcore/plugin/api/alsa \ | |
13 vamp-plugin-sdk | |
14 | |
15 DEPENDPATH += $$SV_INCLUDEPATH | |
16 INCLUDEPATH += $$SV_INCLUDEPATH | |
17 | |
18 # Platform defines for RtMidi | |
19 linux*: DEFINES += __LINUX_ALSASEQ__ | |
20 macx*: DEFINES += __MACOSX_CORE__ | |
21 win*: DEFINES += __WINDOWS_MM__ | |
22 solaris*: DEFINES += __RTMIDI_DUMMY_ONLY__ | |
23 | |
24 # Defines for Dataquay | |
25 DEFINES += USE_SORD | |
26 | |
27 DEFINES += NO_HIT_COUNTS | |
28 | |
29 CONFIG += qt thread warn_on stl rtti exceptions c++11 | |
30 | |
31 include(bq-files.pri) | |
32 include(vamp-plugin-sdk-files.pri) | |
33 include(svcore/files.pri) | |
34 | |
35 DATAQUAY_SOURCES=$$fromfile(dataquay/lib.pro, SOURCES) | |
36 DATAQUAY_HEADERS=$$fromfile(dataquay/lib.pro, HEADERS) | |
37 | |
38 for (file, BQ_SOURCES) { SOURCES += $$file } | |
39 for (file, BQ_HEADERS) { HEADERS += $$file } | |
40 | |
41 for (file, VAMP_SOURCES) { SOURCES += $$file } | |
42 for (file, VAMP_HEADERS) { HEADERS += $$file } | |
43 | |
44 for (file, DATAQUAY_SOURCES) { SOURCES += $$sprintf("dataquay/%1", $$file) } | |
45 for (file, DATAQUAY_HEADERS) { HEADERS += $$sprintf("dataquay/%1", $$file) } | |
46 | |
47 for (file, SVCORE_SOURCES) { SOURCES += $$sprintf("svcore/%1", $$file) } | |
48 for (file, SVCORE_HEADERS) { HEADERS += $$sprintf("svcore/%1", $$file) } | |
49 |