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