Removed reference to xpm from src.pro to get rid of make warnings.
[situare] / src / src.pro
1 # -------------------------------------------------
2 # Project created by QtCreator 2010-03-26T07:57:35
3 # -------------------------------------------------
4 TARGET = situare
5 TEMPLATE = app
6 SOURCES += main.cpp \
7     ui/mainwindow.cpp \
8     ui/mapviewscreen.cpp \
9     ui/listviewscreen.cpp
10 HEADERS += ui/mainwindow.h \
11     ui/mapviewscreen.h \
12     ui/listviewscreen.h
13
14 # -----------------------------------------------------------------
15 # Debian packetizing additions
16 # -----------------------------------------------------------------
17 unix { 
18     # VARIABLES
19     isEmpty(PREFIX):PREFIX = /usr/local
20
21     BINDIR = $$PREFIX/bin
22     DATADIR = $$PREFIX/share
23
24     DEFINES += DATADIR=\\\"$$DATADIR\\\" PKGDATADIR=\\\"$$PKGDATADIR\\\"
25
26     # MAKE INSTALL
27     INSTALLS += target desktop icon26
28  
29     target.path = $$BINDIR
30
31     desktop.path = $$DATADIR/applications/hildon
32     desktop.files += $${TARGET}.desktop
33
34     icon26.path = $$DATADIR/icons/hicolor/26x26/apps
35     icon26.files += situare.png
36 }