To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / common / common.pro
History | View | Annotate | Download (469 Bytes)
| 1 |
TEMPLATE = lib |
|---|---|
| 2 |
TARGET = common |
| 3 |
|
| 4 |
QT += network |
| 5 |
|
| 6 |
CONFIG += staticlib debug |
| 7 |
|
| 8 |
HEADERS += EditDistance.h Objects.h Matcher.h TypeRegistrar.h FeatureFileIndex.h |
| 9 |
SOURCES += EditDistance.cpp Objects.cpp Matcher.cpp TypeRegistrar.cpp FeatureFileIndex.cpp |
| 10 |
|
| 11 |
INCLUDEPATH += ../../dataquay |
| 12 |
INCLUDEPATH += ../../sonic-visualiser/svcore |
| 13 |
|
| 14 |
exists(./platform.pri) {
|
| 15 |
include(./platform.pri) |
| 16 |
} |
| 17 |
!exists(./platform.pri) {
|
| 18 |
exists(../platform.pri) {
|
| 19 |
include(../platform.pri) |
| 20 |
} |
| 21 |
} |
| 22 |
|