Merge branch 'bigger_images'
[situare] / src / src.pro
index 0003224..3890c1f 100644 (file)
@@ -3,12 +3,11 @@
 # -------------------------------------------------
 TARGET = ../situare
 TEMPLATE = app
-INCLUDEPATH += "/usr/include/qjson"
-LIBS += "-lqjson"
+INCLUDEPATH += /usr/include/qjson
+LIBS += -lqjson
 RESOURCES += ../images.qrc
 SOURCES += main.cpp \
     ui/mainwindow.cpp \
-    ui/mapviewscreen.cpp \
     situareservice/situareservice.cpp \
     situareservice/imagefetcher.cpp \
     facebookservice/facebookcredentials.cpp \
@@ -18,8 +17,6 @@ SOURCES += main.cpp \
     map/mapscene.cpp \
     map/maptile.cpp \
     map/mapfetcher.cpp \
-    map/mapzoompanel.cpp \
-    map/mapbutton.cpp \
     map/ownlocationitem.cpp \
     map/baselocationitem.cpp \
     map/friendlocationitem.cpp \
@@ -35,22 +32,28 @@ SOURCES += main.cpp \
     map/maptilerequest.cpp \
     ui/imagebutton.cpp \
     ui/friendlistpanel.cpp \
-    ui/userpanel.cpp \
+    ui/userinfopanel.cpp \
     ui/panelsidebar.cpp \
     ui/panelsliderbar.cpp \
     map/friendgroupitem.cpp \
     map/frienditemshandler.cpp \
-       gps/gpsposition.cpp
+    gps/gpsposition.cpp \
+    map/gpslocationitem.cpp \
+    ui/zoombuttonpanel.cpp \
+    ui/userinfo.cpp \
+    ui/sidepanel.cpp \
+    ui/zoombutton.cpp \
+    network/networkaccessmanager.cpp \
+    network/networkhandler.cpp \
+    network/networkcookiejar.cpp \
+    network/networkreply.cpp
 HEADERS += ui/mainwindow.h \
-    ui/mapviewscreen.h \
     map/mapengine.h \
     map/mapview.h \
     map/mapscene.h \
     map/maptile.h \
     map/mapfetcher.h \
     map/mapcommon.h \
-    map/mapzoompanel.h \
-    map/mapbutton.h \
     map/ownlocationitem.h \
     map/baselocationitem.h \
     map/friendlocationitem.h \
@@ -72,35 +75,62 @@ HEADERS += ui/mainwindow.h \
     map/maptilerequest.h \
     ui/imagebutton.h \
     ui/friendlistpanel.h \
-    ui/userpanel.h \
+    ui/userinfopanel.h \
     ui/panelcommon.h \
     ui/panelsidebar.h \
     ui/panelsliderbar.h \
     map/friendgroupitem.h \
     map/frienditemshandler.h \
-        gps/gpsposition.h
+    gps/gpsposition.h \
+    map/gpslocationitem.h \
+    gps/gpscommon.h \
+    ui/zoombuttonpanel.h \
+    common.h \
+    ui/userinfo.h \
+    ui/sidepanel.h \
+    ui/zoombutton.h \
+    network/networkaccessmanager.h \
+    network/networkhandler.h \
+    network/networkcookiejar.h \
+    network/networkreply.h
 QT += network \
     webkit
+#DEFINES += QT_NO_DEBUG_OUTPUT
 
-CONFIG += mobility
-
-MOBILITY = location
-
-DEFINES += QT_NO_DEBUG_OUTPUT
-
-!maemo5 {
-    message(QJson built in)
-    message(Make sure you have QJson development headers installed)
-    message(install headers with: sudo apt-get install libqjson-dev)
-}
-maemo5 {
+maemo5 | simulator {
+    sbox | simulator {
+        DEFINES += SBOX
+        SOURCES += network/networkhandlerprivatestub.cpp
+        HEADERS += network/networkhandlerprivatestub.h
+    } else {
+        INCLUDEPATH += /usr/include/glib-2.0 /usr/lib/glib-2.0/include
+        SOURCES += network/networkhandlerprivate.cpp
+        HEADERS += network/networkhandlerprivate.h
+        QT += dbus
+        CONFIG += icd2
+    }
+    SOURCES += gps/gpspositionprivate.cpp
+    HEADERS += gps/gpspositionprivate.h
     QT += maemo5
-    message(QJson built in)
+    CONFIG += mobility
+    MOBILITY = location
+    message([QJson])
     message(Make sure you have QJson development headers installed)
     message(add: deb http://repository.maemo.org/extras-devel fremantle free non-free)
-    message(to scratchbox's sources.list in /etc/apt)
+    message(to Scratchbox's sources.list in /etc/apt)
     message(run: apt-get update)
     message(install headers with: apt-get install libqjson-dev)
+    message([QtMobility])
+    message(Make sure you have QtMobility development headers installed)
+    message(install headers with: apt-get install libqtm-dev)
+} else {
+    SOURCES += gps/gpspositionprivatestub.cpp \
+               network/networkhandlerprivatestub.cpp
+    HEADERS += gps/gpspositionprivatestub.h \
+               network/networkhandlerprivatestub.h
+    message(QJson built in)
+    message(Make sure you have QJson development headers installed)
+    message(install headers with: sudo apt-get install libqjson-dev)
 }
 
 # -----------------------------------------------------------------