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