Version bump (0.3-2)
[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 symbian {
14 TARGET.UID3 = 0xECDDA32D
15 TARGET.CAPABILITY = Location
16 }
17
18 # If your application uses the Qt Mobility libraries, uncomment
19 # the following lines and add the respective components to the 
20 # MOBILITY variable. 
21 CONFIG += mobility
22 MOBILITY += location
23
24 QT += dbus
25
26 contains(QT_CONFIG, opengl): QT += opengl
27
28 SOURCES += \
29     src/satelliteviewwindow.cpp \
30     src/satelliteview.cpp \
31     src/mainwindow.cpp \
32     src/main.cpp \
33     src/satellitesignalstrength.cpp \
34     src/gpscompasswindow.cpp \
35     src/compass.cpp
36 HEADERS += \
37     src/satelliteviewwindow.h \
38     src/satelliteview.h \
39     src/mainwindow.h \
40     src/satellitesignalstrength.h \
41     src/gpscompasswindow.h \
42     src/compass.h
43 FORMS += 
44
45 symbian {
46 SOURCES += src/satellitesignalstrengthwindow.cpp
47 HEADERS += src/satellitesignalstrengthwindow.h
48 }
49
50 # Please do not modify the following two lines. Required for deployment.
51 include(deployment.pri)
52 qtcAddDeployment()