Merge branch 'master' of https://vcs.maemo.org/git/situare
[situare] / src / src.pro
index 61f41f1..53abef3 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/gpspositioninterface.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,28 +75,43 @@ 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/gpspositioninterface.h \
-    situarecommon.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
 
-!maemo5 {
-    SOURCES += gps/gpspositionmockup.cpp
-    HEADERS += gps/gpspositionmockup.h
-    message(QJson built in)
-    message(Make sure you have QJson development headers installed)
-    message(install headers with: sudo apt-get install libqjson-dev)
-}
-maemo5 {
-    SOURCES += gps/gpsposition.cpp
-    HEADERS += gps/gpsposition.h
+maemo5 | simulator {
+    armel {
+        DEFINES += ARMEL
+        INCLUDEPATH += /usr/include/glib-2.0 /usr/lib/glib-2.0/include
+        SOURCES += network/networkhandlerprivate.cpp
+        HEADERS += network/networkhandlerprivate.h
+        QT += dbus
+        CONFIG += icd2
+    }
+    else {
+        SOURCES += network/networkhandlerprivatestub.cpp
+        HEADERS += network/networkhandlerprivatestub.h
+    }
+    SOURCES += gps/gpspositionprivate.cpp
+    HEADERS += gps/gpspositionprivate.h
     QT += maemo5
     CONFIG += mobility
     MOBILITY = location
@@ -106,6 +124,14 @@ maemo5 {
     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)
 }
 
 # -----------------------------------------------------------------