1bf68123ebf0c0d274d1d589d204ce72a245f6a9
[gpssportsniffer] / GPSSniffer.pro
1 # Add files and directories to ship with the application 
2 # by adapting the examples below.
3 # file1.source = myfile
4 # dir1.source = mydir
5 DEPLOYMENTFOLDERS = # file1 dir1
6
7 symbian:TARGET.UID3 = 0xEACFEDA8
8
9 # Smart Installer package's UID
10 # This UID is from the protected range 
11 # and therefore the package will fail to install if self-signed
12 # By default qmake uses the unprotected range value if unprotected UID is defined for the application
13 # and 0x2002CCCF value if protected UID is given to the application
14 #symbian:DEPLOYMENT.installer_header = 0x2002CCCF
15
16 # Allow network access on Symbian
17 symbian:TARGET.CAPABILITY += NetworkServices
18
19 # If your application uses the Qt Mobility libraries, uncomment
20 # the following lines and add the respective components to the 
21 QT+=network
22 CONFIG += mobility
23 CONFIG += debug
24 MOBILITY += location
25
26 equals(QT_MAJOR_VERSION, 4):lessThan(QT_MINOR_VERSION, 7) {
27     MOBILITY += bearer
28     INCLUDEPATH += ../bearer
29 } else {
30     # use Bearer Management classes in QtNetwork module
31     DEFINES += BEARER_IN_QTNETWORK
32 }
33 SOURCES += main.cpp \
34     log.cpp \
35     track.cpp \
36     utils.cpp \
37     windowMap.cpp \
38     settingsWindow.cpp \
39     settings.cpp \
40     loadtracksWindow.cpp \
41     mainWindow.cpp \
42     activityinfo.cpp \
43     tilesMap.cpp \
44     downloadingStatus.cpp
45 HEADERS += \
46     log.h \
47     track.h \
48     constants.h \
49     utils.h \
50     windowMap.h \
51     settingsWindow.h \
52     settings.h \
53     mainWindow.h \
54     loadTracksWindow.h \
55     activityinfo.h \
56     tilesMap.h \
57     downloadingStatus.h
58 FORMS += \
59     settingsWindow.ui \
60     loadtracksWindow.ui \
61     mainWindow.ui \
62     activityinfo.ui \
63     downloadingStatus.ui
64
65 # Please do not modify the following two lines. Required for deployment.
66 include(deployment.pri)
67 qtcAddDeployment()
68
69 OTHER_FILES += \
70     qtc_packaging/debian_fremantle/rules \
71     qtc_packaging/debian_fremantle/README \
72     qtc_packaging/debian_fremantle/copyright \
73     qtc_packaging/debian_fremantle/control \
74     qtc_packaging/debian_fremantle/compat \
75     qtc_packaging/debian_fremantle/changelog \
76     qtc_packaging/meego.spec \
77     qtc_packaging/debian_harmattan/rules \
78     qtc_packaging/debian_harmattan/README \
79     qtc_packaging/debian_harmattan/copyright \
80     qtc_packaging/debian_harmattan/control \
81     qtc_packaging/debian_harmattan/compat \
82     qtc_packaging/debian_harmattan/changelog \
83     qtc_packaging/meego.spec \
84     qtc_packaging/debian_fremantle/COPYING.txt \
85     qtc_packaging/debian_harmattan/COPYING.txt
86
87 RESOURCES += \
88     gpssniffer.qrc