Integrated fetching of the maps from OSM server
[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
16 HEADERS += ui/mainwindow.h \
17     ui/mapviewscreen.h \
18     ui/listviewscreen.h \
19     map/mapengine.h \
20     map/mapview.h \
21     map/mapscene.h \
22     map/maptile.h \
23     map/mapfetcher.h
24 QT += network
25
26 # -----------------------------------------------------------------
27 # Debian packetizing additions
28 # -----------------------------------------------------------------
29 unix { 
30     # VARIABLES
31     isEmpty(PREFIX):PREFIX = /usr/local
32     BINDIR = $$PREFIX/bin
33     DATADIR = $$PREFIX/share
34     DEFINES += DATADIR=\"$$DATADIR\" \
35         PKGDATADIR=\"$$PKGDATADIR\"
36     
37     # MAKE INSTALL
38     INSTALLS += target \
39         desktop \
40         iconxpm \
41         icon26 \
42         icon40 \
43         icon64
44     target.path = $$BINDIR
45     desktop.path = $$DATADIR/applications/hildon
46     desktop.files += $${TARGET}.desktop
47     iconxpm.path = $$DATADIR/pixmap
48     iconxpm.files += ../data/maemo/$${TARGET}.xpm
49     icon26.path = $$DATADIR/icons/hicolor/26x26/apps
50     icon26.files += ../data/26x26/$${TARGET}.png
51     icon40.path = $$DATADIR/icons/hicolor/40x40/apps
52     icon40.files += ../data/40x40/$${TARGET}.png
53     icon64.path = $$DATADIR/icons/hicolor/64x64/apps
54     icon64.files += ../data/64x64/$${TARGET}.png
55 }