summaryrefslogtreecommitdiffstats
path: root/tests/manual/location-testing-tools/mapbox/mapbox.pro
blob: 587c8f5b4a21b1d5e290f006ce3756a378911cab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
QT += core gui network
TARGET = mapbox
TEMPLATE = app
INCLUDEPATH += ../../../../src/global \
               ../../../../src/location \
               ../../../../src/location/maps \
               ../../../../src/location/maps/tiled

SOURCES +=  main.cpp \
            mainwindow.cpp \
            mapbox.cpp \
            statswidget.cpp \
            boxgraphicsscene.cpp \
            performance.cpp

HEADERS  +=     mainwindow.h \
                mapbox.h \
                statswidget.h \
                boxgraphicsscene.h \
                performance.h

include(../../../../common.pri)

CONFIG += mobility
MOBILITY = location
equals(QT_MAJOR_VERSION, 4):lessThan(QT_MINOR_VERSION, 7){
    MOBILITY += bearer
    INCLUDEPATH += ../../../../src/bearer
} else {
    # use Bearer Management classes in QtNetwork module
}

win32 {
    LIBS += -lpsapi
}