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