Removed debug messages from MapEngine.
[situare] / src / src.pro
1 # -------------------------------------------------
2 # Project created by QtCreator 2010-03-26T07:57:35
3 # -------------------------------------------------
4 TARGET = ../situare
5 TEMPLATE = app
6 SOURCES += main.cpp \
7     ui/mainwindow.cpp \
8     ui/mapviewscreen.cpp \
9     ui/listviewscreen.cpp \
10     map/mapengine.cpp \
11     map/mapview.cpp \
12     map/mapscene.cpp \
13     map/maptile.cpp \
14     map/mapfetcher.cpp
15 HEADERS += ui/mainwindow.h \
16     ui/mapviewscreen.h \
17     ui/listviewscreen.h \
18     map/mapengine.h \
19     map/mapview.h \
20     map/mapscene.h \
21     map/maptile.h \
22     map/mapfetcher.h \
23     map/mapcommon.h
24 QT += network \
25     webkit
26
27 # use don't use OpenGL when building in scratchbox
28 !maemo5 { 
29     QT += opengl
30     message(OpenGL built in)
31     message(Make sure you have OpenGL development headers installed)
32     message(install headers with: sudo apt-get install libgl-dev libglu-dev)
33 }
34
35 # -----------------------------------------------------------------
36 # Debian packetizing additions
37 # -----------------------------------------------------------------
38 unix { 
39     # VARIABLES
40     isEmpty(PREFIX):PREFIX = /usr
41     BINDIR = $$PREFIX/bin
42     DATADIR = $$PREFIX/share
43     DEFINES += DATADIR=\\\"$$DATADIR\\\" \
44         PKGDATADIR=\\\"$$PKGDATADIR\\\"
45     
46     # MAKE INSTALL
47     desktop.path = $$DATADIR/applications/hildon
48     desktop.files += situare.desktop
49     INSTALLS += desktop
50     icon26.path = $$DATADIR/icons/hicolor/26x26/apps
51     icon26.files += situare.png
52     INSTALLS += icon26
53     target.path = $$BINDIR
54     INSTALLS += target
55 }
56 RESOURCES +=