Route and Results buttons updated.
[speedfreak] / Client / speedfreak.pro
1 # -------------------------------------------------
2 # Project created by QtCreator 2010-03-29T09:21:42
3 # @author     Speed Freak team
4 # @copyright  (c) 2010 Speed Freak team
5 # @license    http://opensource.org/licenses/gpl-license.php GNU Public License
6 # -------------------------------------------------
7 QT += dbus \
8     network \
9     xml
10 TARGET = speedfreak
11 TEMPLATE = app
12 SOURCES += main.cpp \
13     mainwindow.cpp \
14     creditsdialog.cpp \
15     routedialog.cpp \
16     routesavedialog.cpp \
17     welcomedialog.cpp \
18     usersettings.cpp \
19     resultdialog.cpp \
20     instructionsdialog.cpp \
21     settingsdialog.cpp \
22     accelerationstart.cpp \
23     accrealtimedialog.cpp \
24     accelerometer.cpp \
25     movingaverage.cpp \
26     calculate.cpp \
27     calibratedialog.cpp \
28     topresultdialog.cpp \
29     categorylist.cpp \
30     httpclient.cpp \
31     xmlreader.cpp \
32     xmlwriter.cpp \
33     gpsdata.cpp \
34     maemo5locationprivate.cpp \
35     maemo5location.cpp \
36     helpdialog.cpp \
37     helpresultsdialog.cpp \
38     helpaccelerationdialog.cpp \
39     helproutingdialog.cpp \
40     helpsettingsdialog.cpp \
41     custombutton.cpp
42 HEADERS += mainwindow.h \
43     creditsdialog.h \
44     routedialog.h \
45     routesavedialog.h \
46     welcomedialog.h \
47     usersettings.h \
48     resultdialog.h \
49     instructionsdialog.h \
50     settingsdialog.h \
51     accelerationstart.h \
52     accrealtimedialog.h \
53     accelerometer.h \
54     movingaverage.h \
55     calculate.h \
56     calibratedialog.h \
57     topresultdialog.h \
58     categorylist.h \
59     httpclient.h \
60     xmlreader.h \
61     xmlwriter.h \
62     maemo5locationprivate.h \
63     maemo5location.h \
64     gpsdata.h \
65     helpdialog.h \
66     helpresultsdialog.h \
67     helpaccelerationdialog.h \
68     helproutingdialog.h \
69     helpsettingsdialog.h \
70     custombutton.h
71 FORMS += mainwindow.ui \
72     creditsdialog.ui \
73     routedialog.ui \
74     routesavedialog.ui \
75     welcomedialog.ui \
76     resultdialog.ui \
77     instructionsdialog.ui \
78     settingsdialog.ui \
79     accelerationstartdialog.ui \
80     accrealtimedialog.ui \
81     calibratedialog.ui \
82     topresultdialog.ui \
83     helpdialog.ui \
84     helpresultsdialog.ui \
85     helpaccelerationdialog.ui \
86     helproutingdialog.ui \
87     helpsettingsdialog.ui
88 RESOURCES += graphics.qrc
89 contains(QT_CONFIG, hildon):CONFIG += hildon
90 CONFIG += link_pkgconfig
91
92 # Enable this to disable debugging
93 # DEFINES += QT_NO_DEBUG_OUTPUT
94 target.path += /usr/lib
95 devincludes.files = $$HEADERS
96 devincludes.path += /usr/include/$$TEMPLATE$$TARGET
97 INSTALLS += target \
98     devincludes
99 PKGCONFIG += glib-2.0 \
100     liblocation
101 exists(/usr/lib/liblocation.so) { 
102     DEFINES += LIBLOCATION
103     message(liblocation found)
104 }