Fixed src.pro to include some source and header files
authorKaj Wallin <kaj.wallin@ixonos.com>
Thu, 1 Apr 2010 05:16:29 +0000 (08:16 +0300)
committerKaj Wallin <kaj.wallin@ixonos.com>
Thu, 1 Apr 2010 05:16:29 +0000 (08:16 +0300)
src/Situare
src/src.pro

index 88071a7..876dd50 100755 (executable)
Binary files a/src/Situare and b/src/Situare differ
index 7903750..1a71743 100644 (file)
@@ -1,40 +1,43 @@
-#-------------------------------------------------
-#
+# -------------------------------------------------
 # Project created by QtCreator 2010-03-26T07:57:35
-#
-#-------------------------------------------------
-
+# -------------------------------------------------
 TARGET = Situare
 TEMPLATE = app
-
-
-SOURCES += main.cpp\
-        ui/mainwindow.cpp
-
-HEADERS  += ui/mainwindow.h
+SOURCES += main.cpp \
+    ui/mainwindow.cpp \
+    ui/mapviewscreen.cpp \
+    ui/listviewscreen.cpp
+HEADERS += ui/mainwindow.h \
+    ui/mapviewscreen.h \
+    ui/listviewscreen.h
 
 # -----------------------------------------------------------------
-#                      Debian packetizing additions
+# Debian packetizing additions
 # -----------------------------------------------------------------
-unix {
-#VARIABLES
-    isEmpty(PREFIX) {
-        PREFIX = /usr/local
-    }
-BINDIR = $$PREFIX/bin
-DATADIR =$$PREFIX/share
-DEFINES += DATADIR=\"$$DATADIR\" PKGDATADIR=\"$$PKGDATADIR\"
-#MAKE INSTALL
-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
+unix { 
+    # VARIABLES
+    isEmpty(PREFIX):PREFIX = /usr/local
+    BINDIR = $$PREFIX/bin
+    DATADIR = $$PREFIX/share
+    DEFINES += DATADIR=\"$$DATADIR\" \
+        PKGDATADIR=\"$$PKGDATADIR\"
+    
+    # MAKE INSTALL
+    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
 }