Added help for settings dialog.
[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 HEADERS += mainwindow.h \
42     creditsdialog.h \
43     routedialog.h \
44     routesavedialog.h \
45     welcomedialog.h \
46     usersettings.h \
47     resultdialog.h \
48     instructionsdialog.h \
49     settingsdialog.h \
50     accelerationstart.h \
51     accrealtimedialog.h \
52     accelerometer.h \
53     movingaverage.h \
54     calculate.h \
55     calibratedialog.h \
56     topresultdialog.h \
57     categorylist.h \
58     httpclient.h \
59     xmlreader.h \
60     xmlwriter.h \
61     maemo5locationprivate.h \
62     maemo5location.h \
63     gpsdata.h \
64     helpdialog.h \
65     helpresultsdialog.h \
66     helpaccelerationdialog.h \
67     helproutingdialog.h \
68     helpsettingsdialog.h
69 FORMS += mainwindow.ui \
70     creditsdialog.ui \
71     routedialog.ui \
72     routesavedialog.ui \
73     welcomedialog.ui \
74     resultdialog.ui \
75     instructionsdialog.ui \
76     settingsdialog.ui \
77     accelerationstartdialog.ui \
78     accrealtimedialog.ui \
79     calibratedialog.ui \
80     topresultdialog.ui \
81     helpdialog.ui \
82     helpresultsdialog.ui \
83     helpaccelerationdialog.ui \
84     helproutingdialog.ui \
85     helpsettingsdialog.ui
86 RESOURCES += graphics.qrc
87 contains(QT_CONFIG, hildon):CONFIG += hildon
88 CONFIG += link_pkgconfig
89
90 # Enable this to disable debugging
91 DEFINES += QT_NO_DEBUG_OUTPUT
92 target.path += /usr/lib
93 devincludes.files = $$HEADERS
94 devincludes.path += /usr/include/$$TEMPLATE$$TARGET
95 INSTALLS += target \
96     devincludes
97 PKGCONFIG += glib-2.0 \
98     liblocation
99 exists(/usr/lib/liblocation.so) { 
100     DEFINES += LIBLOCATION
101     message(liblocation found)
102 }