Fixed src.pro file AGAIN
[situare] / src / src.pro
1 #-------------------------------------------------
2 #
3 # Project created by QtCreator 2010-03-26T07:57:35
4 #
5 #-------------------------------------------------
6
7 TARGET = ../situare
8 TEMPLATE = app
9
10
11 SOURCES += main.cpp \
12     ui/mainwindow.cpp \
13     ui/mapviewscreen.cpp \
14     ui/listviewscreen.cpp \
15     map/mapengine.cpp \
16     map/mapview.cpp \
17     map/mapscene.cpp \
18     map/maptile.cpp \
19     map/mapfetcher.cpp
20     
21 HEADERS += ui/mainwindow.h \
22     ui/mapviewscreen.h \
23     ui/listviewscreen.h \
24     map/mapengine.h \
25     map/mapview.h \
26     map/mapscene.h \
27     map/maptile.h \
28     map/mapfetcher.h \
29     common.h
30
31 QT += network \
32       webkit
33
34 # -----------------------------------------------------------------
35 #                      Debian packetizing additions
36 # -----------------------------------------------------------------
37 unix {
38 #VARIABLES
39     isEmpty(PREFIX) {
40         PREFIX = /usr
41     }
42 BINDIR = $$PREFIX/bin
43 DATADIR =$$PREFIX/share
44
45 DEFINES += DATADIR=\\\"$$DATADIR\\\" PKGDATADIR=\\\"$$PKGDATADIR\\\"
46
47 #MAKE INSTALL
48
49 desktop.path = $$DATADIR/applications/hildon
50 desktop.files += situare.desktop
51 INSTALLS += desktop
52
53 icon26.path = $$DATADIR/icons/hicolor/26x26/apps
54 icon26.files += situare.png
55 INSTALLS += icon26
56
57 target.path = $$BINDIR
58 INSTALLS += target
59 }