Renamed situareservice, added situareservice class, cookiehandler class and related...
[situare] / src / src.pro
index 08eb1d8..7145f9b 100644 (file)
@@ -1,15 +1,22 @@
 # -------------------------------------------------
 # Project created by QtCreator 2010-03-26T07:57:35
 # -------------------------------------------------
-TARGET = ../situare
+TARGET = situare
 TEMPLATE = app
 SOURCES += main.cpp \
     ui/mainwindow.cpp \
     ui/mapviewscreen.cpp \
-    ui/listviewscreen.cpp
+    ui/listviewscreen.cpp \
+    situareservice/situareservice.cpp \
+    cookiehandler/cookiehandler.cpp
 HEADERS += ui/mainwindow.h \
     ui/mapviewscreen.h \
-    ui/listviewscreen.h
+    ui/listviewscreen.h \
+    situareservice/situareservice.h \
+    situareservice/situarecommon.h \
+    cookiehandler/cookiehandler.h
+QT += core \
+    network
 
 # -----------------------------------------------------------------
 # Debian packetizing additions
@@ -17,27 +24,20 @@ HEADERS += ui/mainwindow.h \
 unix { 
     # VARIABLES
     isEmpty(PREFIX):PREFIX = /usr/local
+
     BINDIR = $$PREFIX/bin
     DATADIR = $$PREFIX/share
-    DEFINES += DATADIR=\"$$DATADIR\" \
-        PKGDATADIR=\"$$PKGDATADIR\"
-    
+
+    DEFINES += DATADIR=\\\"$$DATADIR\\\" PKGDATADIR=\\\"$$PKGDATADIR\\\"
+
     # MAKE INSTALL
-    INSTALLS += target \
-        desktop \
-        iconxpm \
-        icon26 \
-        icon40 \
-        icon64
+    INSTALLS += target desktop iconxpm icon26
     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
+    icon26.files += situare.png
 }