minor change in gui
[googlelatitude] / src / src.pro
1 QT += network
2 QT += webkit
3
4 TARGET = GoogleLatitude
5 TEMPLATE = app
6 SOURCES += main.cpp \
7     latitude.cpp \
8     glatitude.cpp
9 HEADERS += latitude.h \
10     glatitude.h
11 unix { 
12     isEmpty(PREFIX):PREFIX = /usr/local
13     BINDIR = $$PREFIX/bin
14     DATADIR = $$PREFIX/share
15     DEFINES += DATADIR=\"$$DATADIR\" \
16         PKGDATADIR=\"$$PKGDATADIR\"
17     INSTALLS += target \
18         desktop \
19         iconxpm \
20         icon26 \
21         icon40 \
22         icon64
23     target.path = $$BINDIR
24     desktop.path = $$DATADIR/applications/hildon
25     desktop.files += $${TARGET}.desktop
26     iconxpm.path = $$DATADIR/pixmap
27     iconxpm.files += ../data/maemo/$${TARGET}.xpm
28     icon26.path = $$DATADIR/icons/hicolor/26x26/apps
29     icon26.files += ../data/26x26/$${TARGET}.png
30     icon40.path = $$DATADIR/icons/hicolor/40x40/apps
31     icon40.files += ../data/40x40/$${TARGET}.png
32     icon64.path = $$DATADIR/icons/hicolor/64x64/apps
33     icon64.files += ../data/64x64/$${TARGET}.png
34 }