First Commit 0.1 debianized
[googlelatitude] / src / src.pro
diff --git a/src/src.pro b/src/src.pro
new file mode 100644 (file)
index 0000000..a2062b9
--- /dev/null
@@ -0,0 +1,31 @@
+QT += network
+TARGET = GoogleLatitude
+TEMPLATE = app
+SOURCES += main.cpp \
+    latitudewidget.cpp \
+    googlelatitude.cpp
+HEADERS += latitudewidget.h \
+    googlelatitude.h
+
+unix {
+  isEmpty(PREFIX) {
+     PREFIX = /usr/local
+  }
+  BINDIR = $$PREFIX/bin
+  DATADIR = $$PREFIX/share
+  DEFINES += DATADIR=\"$$DATADIR\" PKGDATADIR=\"$$PKGDATADIR\"
+
+  INSTALLS += target desktop iconxpm icon26 icon40 icon64
+  target.path = $$BINDIR
+  desktop.path = $$DATADIR/applications/hildon
+  desktop.files += $${TARGET}.desktop
+  iconxpm.path = $$DATADIR/pixmap
+  iconxpm.files += ../data/maemo/$${TARGET}.xpm
+  icon26.path = $$DATADIR/icons/hicolor/26x26/apps
+  icon26.files += ../data/26x26/$${TARGET}.png
+  icon40.path = $$DATADIR/icons/hicolor/40x40/apps
+  icon40.files += ../data/40x40/$${TARGET}.png
+  icon64.path = $$DATADIR/icons/hicolor/64x64/apps
+  icon64.files += ../data/64x64/$${TARGET}.png
+}
+