Added button for sending route to server.
[speedfreak] / Client / UI.pro
1 # -------------------------------------------------
2 # Project created by QtCreator 2010-02-23T14:17:30
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 += network \
8     dbus \
9     xml
10 TARGET = UI
11 TEMPLATE = app
12 SOURCES += main.cpp \
13     carmainwindow.cpp \
14     resultdialog.cpp \
15     stringlistmodel.cpp \
16     measuredialog.cpp \
17     calculate.cpp \
18     accelerometer.cpp \
19     loginwindow.cpp \
20     registration.cpp \
21     measures.cpp \
22     xmlwriter.cpp \
23     xmlreader.cpp \
24     httpclient.cpp \
25     categorylist.cpp \
26     welcomedialog.cpp \
27     gpsdata.cpp \
28     maemo5locationprivate.cpp \
29     maemo5location.cpp \
30     routedialog.cpp \
31     movingaverage.cpp
32 HEADERS += carmainwindow.h \
33     resultdialog.h \
34     stringlistmodel.h \
35     measuredialog.h \
36     accelerometer.h \
37     calculate.h \
38     loginwindow.h \
39     registration.h \
40     measures.h \
41     xmlwriter.h \
42     xmlreader.h \
43     httpclient.h \
44     categorylist.h \
45     welcomedialog.h \
46     gpsdata.h \
47     maemo5locationprivate.h \
48     maemo5location.h \
49     routedialog.h \
50     movingaverage.h
51 FORMS += carmainwindow.ui \
52     resultdialog.ui \
53     measuredialog.ui \
54     loginwindow.ui \
55     registration.ui \
56     welcomedialog.ui \
57     routedialog.ui
58
59 contains(QT_CONFIG, hildon):CONFIG += hildon
60 CONFIG += link_pkgconfig
61
62 # Enable this to disable debugging
63 # DEFINES += QT_NO_DEBUG_OUTPUT
64 target.path += /usr/lib
65 devincludes.files = $$HEADERS
66 devincludes.path += /usr/include/$$TEMPLATE$$TARGET
67 INSTALLS += target \
68     devincludes
69 PKGCONFIG += glib-2.0 \
70     liblocation
71 exists(/usr/lib/liblocation.so) {
72     DEFINES += LIBLOCATION
73     message(liblocation found)
74 }