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: | Revision:

root / testapp / testapp.pro @ 49:a6a71d1c7eb7

History | View | Annotate | Download (367 Bytes)

1
TEMPLATE = app
2
TARGET = testapp
3

    
4
QT += network
5

    
6
SOURCES += Loader.cpp
7

    
8
RESOURCES += testapp.qrc
9

    
10
INCLUDEPATH += ../common
11

    
12
PRE_TARGETDEPS += ../common/libcommon.a
13

    
14
LIBS += ../common/libcommon.a -lsvcore -ldataquay -lrdf
15

    
16
exists(./platform.pri) {
17
    include(./platform.pri)
18
}
19
!exists(./platform.pri) {
20
    exists(../platform.pri) {
21
	include(../platform.pri)
22
    }
23
}
24