GPS Sport Sniffer is a open source GPS application developed with Qt and made in...
[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     satellitedialog.cpp \
35     log.cpp \
36     track.cpp \
37     utils.cpp \
38     windowMap.cpp \
39     settingsWindow.cpp \
40     settings.cpp \
41     loadtracksWindow.cpp \
42     mainWindow.cpp \
43     activityinfo.cpp \
44     tilesMap.cpp \
45     downloadingStatus.cpp
46 HEADERS += \
47     satellitedialog.h \
48     log.h \
49     track.h \
50     constants.h \
51     utils.h \
52     windowMap.h \
53     settingsWindow.h \
54     settings.h \
55     mainWindow.h \
56     loadTracksWindow.h \
57     activityinfo.h \
58     tilesMap.h \
59     downloadingStatus.h
60 FORMS += \
61     settingsWindow.ui \
62     loadtracksWindow.ui \
63     mainWindow.ui \
64     activityinfo.ui \
65     downloadingStatus.ui
66
67 # Please do not modify the following two lines. Required for deployment.
68 include(deployment.pri)
69 qtcAddDeployment()
70
71 OTHER_FILES += \
72     qtc_packaging/debian_fremantle/rules \
73     qtc_packaging/debian_fremantle/README \
74     qtc_packaging/debian_fremantle/copyright \
75     qtc_packaging/debian_fremantle/control \
76     qtc_packaging/debian_fremantle/compat \
77     qtc_packaging/debian_fremantle/changelog \
78     qtc_packaging/meego.spec \
79     qtc_packaging/debian_harmattan/rules \
80     qtc_packaging/debian_harmattan/README \
81     qtc_packaging/debian_harmattan/copyright \
82     qtc_packaging/debian_harmattan/control \
83     qtc_packaging/debian_harmattan/compat \
84     qtc_packaging/debian_harmattan/changelog
85
86 RESOURCES += \
87     gpssniffer.qrc