778a9c13b2ac974a57dc7435174435615303ce64
[gpsdata] / gpsdata.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 # Avoid auto screen rotation
8 DEFINES += ORIENTATIONLOCK
9
10 # Needs to be defined for Symbian
11 #DEFINES += NETWORKACCESS
12
13 # If your application uses the Qt Mobility libraries, uncomment
14 # the following lines and add the respective components to the 
15 # MOBILITY variable. 
16 CONFIG += mobility
17 MOBILITY += location
18
19 QT += dbus opengl
20
21 SOURCES += \
22     src/satelliteviewwindow.cpp \
23     src/satelliteview.cpp \
24     src/mainwindow.cpp \
25     src/main.cpp \
26     src/satellitesignalstrength.cpp \
27     src/gpscompasswindow.cpp \
28     src/compass.cpp
29 HEADERS += \
30     src/satelliteviewwindow.h \
31     src/satelliteview.h \
32     src/mainwindow.h \
33     src/satellitesignalstrength.h \
34     src/gpscompasswindow.h \
35     src/compass.h
36 FORMS += 
37
38 symbian {
39     SOURCES += src/satellitesignalstrengthwindow.cpp
40     HEADERS += src/satellitesignalstrengthwindow.h
41
42     QT -= dbus opengl
43     DEFINES += QT_NO_OPENGL
44
45     TARGET.UID3 = 0xECDDA32D
46     TARGET.CAPABILITY = Location
47 }
48
49 # Please do not modify the following two lines. Required for deployment.
50 include(deployment.pri)
51 qtcAddDeployment()