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