Route save dialog development. Added: gps,icon...
[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 TARGET = speedfreak
8 TEMPLATE = app
9 SOURCES += main.cpp \
10     mainwindow.cpp \
11     creditsdialog.cpp \
12     routedialog.cpp \
13     routesavedialog.cpp \
14     gpsdata.cpp \
15     maemo5locationprivate.cpp \
16     maemo5location.cpp
17 HEADERS += mainwindow.h \
18     creditsdialog.h \
19     routedialog.h \
20     routesavedialog.h \
21     gpsdata.h \
22     maemo5locationprivate.h \
23     maemo5location.h
24 FORMS += mainwindow.ui \
25     creditsdialog.ui \
26     routedialog.ui \
27     routesavedialog.ui
28 RESOURCES += graphics.qrc
29
30 contains(QT_CONFIG, hildon):CONFIG += hildon
31 CONFIG += link_pkgconfig
32
33 # Enable this to disable debugging
34 DEFINES += QT_NO_DEBUG_OUTPUT
35 target.path += /usr/lib
36 devincludes.files = $$HEADERS
37 devincludes.path += /usr/include/$$TEMPLATE$$TARGET
38 INSTALLS += target \
39     devincludes
40 PKGCONFIG += glib-2.0 \
41     liblocation
42 exists(/usr/lib/liblocation.so) {
43     DEFINES += LIBLOCATION
44     message(liblocation found)
45 }