summaryrefslogtreecommitdiff
path: root/examples/logfilepositionsource/logfilepositionsource.pro
blob: 931b467c28a46219d2def0b30d2de738fecf0b05 (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
TEMPLATE=app
INCLUDEPATH += ../../src/location

HEADERS = logfilepositionsource.h \
          clientapplication.h
SOURCES = logfilepositionsource.cpp \
          clientapplication.cpp \
          main.cpp

CONFIG += console

include(../mobility_examples.pri)

CONFIG += mobility
MOBILITY = location

symbian|wince* {
    symbian {
        addFiles.sources = simplelog.txt
        DEPLOYMENT += addFiles

        TARGET.CAPABILITY = Location
    }
    wince* {
        addFiles.sources = ./simplelog.txt
        addFiles.path = .
        DEPLOYMENT += addFiles
    }
} else {
    logfileexample.path = $$QT_MOBILITY_EXAMPLES
    logfileexample.files = simplelog.txt
    INSTALLS += logfileexample
}