Added missing resource file
[situare] / src / src.pro
1 # -------------------------------------------------
2 # Project created by QtCreator 2010-03-26T07:57:35
3 # -------------------------------------------------
4 TARGET = ../situare
5 TEMPLATE = app
6 RESOURCES += images.qrc
7 SOURCES += main.cpp \
8     ui/mainwindow.cpp \
9     ui/mapviewscreen.cpp \
10     ui/listviewscreen.cpp \
11     map/mapengine.cpp \
12     map/mapview.cpp \
13     map/mapscene.cpp \
14     map/maptile.cpp \
15     map/mapfetcher.cpp \
16     ui/pixmap.cpp \
17     ui/infotab.cpp
18 HEADERS += ui/mainwindow.h \
19     ui/mapviewscreen.h \
20     ui/listviewscreen.h \
21     map/mapengine.h \
22     map/mapview.h \
23     map/mapscene.h \
24     map/maptile.h \
25     map/mapfetcher.h \
26     map/mapcommon.h \
27     ui/pixmap.h \
28     ui/infotab.h
29 QT += network \
30     webkit
31
32 # use don't use OpenGL when building in scratchbox
33 !maemo5 { 
34     QT += opengl
35     message(OpenGL built in)
36     message(Make sure you have OpenGL development headers installed)
37     message(install headers with: sudo apt-get install libgl-dev libglu-dev)
38 }
39
40 # -----------------------------------------------------------------
41 # Debian packetizing additions
42 # -----------------------------------------------------------------
43 unix { 
44     # VARIABLES
45     isEmpty(PREFIX):PREFIX = /usr
46     BINDIR = $$PREFIX/bin
47     DATADIR = $$PREFIX/share
48     DEFINES += DATADIR=\\\"$$DATADIR\\\" \
49         PKGDATADIR=\\\"$$PKGDATADIR\\\"
50     
51     # MAKE INSTALL
52     desktop.path = $$DATADIR/applications/hildon
53     desktop.files += situare.desktop
54     INSTALLS += desktop
55     icon26.path = $$DATADIR/icons/hicolor/26x26/apps
56     icon26.files += situare.png
57     INSTALLS += icon26
58     target.path = $$BINDIR
59     INSTALLS += target
60 }
61 RESOURCES +=