To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / base.pri @ 101:ddc288a7977e

History | View | Annotate | Download (1.81 KB)

1

    
2
SV_INCLUDEPATH = \
3
        . \
4
	bqvec \
5
	bqvec/bqvec \
6
	bqfft \
7
	bqresample \
8
	bqaudioio \
9
	bqaudioio/bqaudioio \
10
	piper-cpp \
11
	checker \
12
	checker/checker \
13
	dataquay \
14
	dataquay/dataquay \
15
	svcore \
16
	svcore/data \
17
	svcore/plugin/api/alsa \
18
	svgui \
19
	svapp \
20
	vamp-plugin-sdk
21

    
22
DEPENDPATH += $$SV_INCLUDEPATH
23
INCLUDEPATH += $$SV_INCLUDEPATH
24

    
25
# Platform defines for RtMidi
26
linux*:   DEFINES += __LINUX_ALSASEQ__
27
macx*:    DEFINES += __MACOSX_CORE__
28
win*:     DEFINES += __WINDOWS_MM__
29
solaris*: DEFINES += __RTMIDI_DUMMY_ONLY__
30

    
31
# Defines for Dataquay
32
DEFINES += USE_SORD
33

    
34
CONFIG += qt thread warn_on stl rtti exceptions c++11
35

    
36
include(bq-files.pri)
37
include(vamp-plugin-sdk-files.pri)
38
include(svcore/files.pri)
39

    
40
DATAQUAY_SOURCES=$$fromfile(dataquay/lib.pro, SOURCES)
41
DATAQUAY_HEADERS=$$fromfile(dataquay/lib.pro, HEADERS)
42

    
43
CHECKER_SOURCES=$$fromfile(checker/checker.pri, SOURCES)
44
CHECKER_HEADERS=$$fromfile(checker/checker.pri, HEADERS)
45
                 
46
CLIENT_HEADERS=$$fromfile(piper-cpp/vamp-client/client.pro, HEADERS)
47

    
48
for (file, BQ_SOURCES)       { SOURCES += $$file }
49
for (file, BQ_HEADERS)       { HEADERS += $$file }
50

    
51
for (file, VAMP_SOURCES)     { SOURCES += $$file }
52
for (file, VAMP_HEADERS)     { HEADERS += $$file }
53

    
54
for (file, DATAQUAY_SOURCES) { SOURCES += $$sprintf("dataquay/%1", $$file) }
55
for (file, DATAQUAY_HEADERS) { HEADERS += $$sprintf("dataquay/%1", $$file) }
56

    
57
for (file, CHECKER_SOURCES)  { SOURCES += $$sprintf("checker/%1",  $$file) }
58
for (file, CHECKER_HEADERS)  { HEADERS += $$sprintf("checker/%1",  $$file) }
59

    
60
for (file, SVCORE_SOURCES)   { SOURCES += $$sprintf("svcore/%1", $$file) }
61
for (file, SVCORE_HEADERS)   { HEADERS += $$sprintf("svcore/%1", $$file) }
62
             
63
for (file, CLIENT_HEADERS) {
64
    HEADERS += $$sprintf("piper-cpp/vamp-client/%1",  $$file)
65
}
66
    
67
SOURCES += piper-cpp/vamp-capnp/piper-capnp.cpp