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