To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / base.pro @ 110:125520c3dc05
History | View | Annotate | Download (1.51 KB)
| 1 |
|
|---|---|
| 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 |
include(base.pri) |
| 13 |
|
| 14 |
CONFIG += staticlib |
| 15 |
QT += network xml |
| 16 |
QT -= gui |
| 17 |
|
| 18 |
TARGET = base |
| 19 |
|
| 20 |
OBJECTS_DIR = o |
| 21 |
MOC_DIR = o |
| 22 |
|
| 23 |
exists(repoint.pri) {
|
| 24 |
include(repoint.pri) |
| 25 |
} |
| 26 |
|
| 27 |
include(bq-files.pri) |
| 28 |
include(vamp-plugin-sdk-files.pri) |
| 29 |
include(svcore/files.pri) |
| 30 |
include(capnp-regen.pri) |
| 31 |
|
| 32 |
DATAQUAY_SOURCES=$$fromfile(dataquay/lib.pro, SOURCES) |
| 33 |
DATAQUAY_HEADERS=$$fromfile(dataquay/lib.pro, HEADERS) |
| 34 |
|
| 35 |
CHECKER_SOURCES=$$fromfile(checker/checker.pri, SOURCES) |
| 36 |
CHECKER_HEADERS=$$fromfile(checker/checker.pri, HEADERS) |
| 37 |
|
| 38 |
CLIENT_HEADERS=$$fromfile(piper-vamp-cpp/vamp-client/qt/test.pro, HEADERS) |
| 39 |
|
| 40 |
for (file, BQ_SOURCES) { SOURCES += $$file }
|
| 41 |
for (file, BQ_HEADERS) { HEADERS += $$file }
|
| 42 |
|
| 43 |
for (file, VAMP_SOURCES) { SOURCES += $$file }
|
| 44 |
for (file, VAMP_HEADERS) { HEADERS += $$file }
|
| 45 |
|
| 46 |
for (file, DATAQUAY_SOURCES) { SOURCES += $$sprintf("dataquay/%1", $$file) }
|
| 47 |
for (file, DATAQUAY_HEADERS) { HEADERS += $$sprintf("dataquay/%1", $$file) }
|
| 48 |
|
| 49 |
for (file, CHECKER_SOURCES) { SOURCES += $$sprintf("checker/%1", $$file) }
|
| 50 |
for (file, CHECKER_HEADERS) { HEADERS += $$sprintf("checker/%1", $$file) }
|
| 51 |
|
| 52 |
for (file, SVCORE_SOURCES) { SOURCES += $$sprintf("svcore/%1", $$file) }
|
| 53 |
for (file, SVCORE_HEADERS) { HEADERS += $$sprintf("svcore/%1", $$file) }
|
| 54 |
|
| 55 |
for (file, CLIENT_HEADERS) {
|
| 56 |
HEADERS += $$sprintf("piper-vamp-cpp/vamp-client/qt/%1", $$file)
|
| 57 |
} |
| 58 |
|
| 59 |
SOURCES += piper-vamp-cpp/vamp-capnp/piper-capnp.cpp |
| 60 |
|