Modified FriendListItemDelegate::paint.
[situare] / src / src.pro
1 # -------------------------------------------------
2 # Project created by QtCreator 2010-03-26T07:57:35
3 # -------------------------------------------------
4 TARGET = ../situare
5 TEMPLATE = app
6 RESOURCES += images.qrc
7 SOURCES += main.cpp \
8     ui/mainwindow.cpp \
9     ui/mapviewscreen.cpp \
10     ui/listviewscreen.cpp \
11     situareservice/situareservice.cpp \
12     cookiehandler/cookiehandler.cpp \
13     facebookservice/facebookcredentials.cpp \
14     facebookservice/facebookauthentication.cpp \
15     map/mapengine.cpp \
16     map/mapview.cpp \
17     map/mapscene.cpp \
18     map/maptile.cpp \
19     map/mapfetcher.cpp \
20     ui/pixmap.cpp \
21     ui/infotab.cpp \
22     ui/updatelocation/updatelocationdialog.cpp \
23     ui/updatelocation/texteditautoresizer.cpp \
24     ui/friendlistview.cpp \
25     ui/friendlistitemdelegate.cpp \
26     ui/friendlistitem.cpp \
27     ui/friendlistmodel.cpp
28 HEADERS += ui/mainwindow.h \
29     ui/mapviewscreen.h \
30     ui/listviewscreen.h \
31     map/mapengine.h \
32     map/mapview.h \
33     map/mapscene.h \
34     map/maptile.h \
35     map/mapfetcher.h \
36     map/mapcommon.h \
37     ui/pixmap.h \
38     ui/infotab.h \
39     ui/updatelocation/updatelocationdialog.h \
40     ui/updatelocation/texteditautoresizer.h \
41     situareservice/situareservice.h \
42     situareservice/situarecommon.h \
43     cookiehandler/cookiehandler.h \
44     facebookservice/facebookcredentials.h \
45     facebookservice/facebookauthentication.h \
46     facebookservice/facebookcommon.h \
47     ui/friendlistview.h \
48     ui/friendlistitemdelegate.h \
49     ui/friendlistitem.h \
50     ui/friendlistmodel.h
51 QT += network \
52     webkit
53
54 # use don't use OpenGL when building in scratchbox
55 !maemo5 { 
56     QT += opengl
57     message(OpenGL built in)
58     message(Make sure you have OpenGL development headers installed)
59     message(install headers with: sudo apt-get install libgl-dev libglu-dev)
60 }
61
62 # -----------------------------------------------------------------
63 # Debian packetizing additions
64 # -----------------------------------------------------------------
65 unix { 
66     # VARIABLES
67     isEmpty(PREFIX):PREFIX = /usr
68     BINDIR = $$PREFIX/bin
69     DATADIR = $$PREFIX/share
70     DEFINES += DATADIR=\\\"$$DATADIR\\\" \
71         PKGDATADIR=\\\"$$PKGDATADIR\\\"
72     
73     # MAKE INSTALL
74     desktop.path = $$DATADIR/applications/hildon
75     desktop.files += situare.desktop
76     INSTALLS += desktop
77     icon26.path = $$DATADIR/icons/hicolor/26x26/apps
78     icon26.files += situare.png
79     INSTALLS += icon26
80     icon40.path = $$DATADIR/icons/hicolor/40x40/apps
81     icon40.files += situare_40x40.png
82     INSTALLS += icon40
83     icon64.path = $$DATADIR/icons/hicolor/64x64/apps
84     icon64.files += situare_64x64.png
85     INSTALLS += icon64
86     target.path = $$BINDIR
87     INSTALLS += target
88 }
89 RESOURCES +=