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