Bigger font and row height to advanced settings dialog.
[irwi] / src / src.pro
1 TEMPLATE = app
2 TARGET = irwi
3
4 SOURCES += main.cpp
5 SOURCES += mainwidget.cpp
6 SOURCES += irctrl.cpp
7 SOURCES += irctrl_p.cpp
8 SOURCES += settingsdlg.cpp
9 SOURCES += selectremotedlg.cpp
10 SOURCES += advsettingsdlg.cpp
11 SOURCES += settingstable.cpp
12 SOURCES += aboutdlg.cpp
13
14 HEADERS += mainwidget.h
15 HEADERS += irctrl.h
16 HEADERS += irctrl_p.h
17 HEADERS += settingsdlg.h
18 HEADERS += selectremotedlg.h
19 HEADERS += advsettingsdlg.h
20 HEADERS += settingstable.h
21 HEADERS += aboutdlg.h
22
23
24 include(qmaemo5homescreenadaptor/qmaemo5homescreenadaptor.pri)
25
26
27 QT += network
28
29 unix {
30 #VARIABLES
31 isEmpty(PREFIX) {
32     PREFIX = /usr
33 }
34
35 BINDIR = $$PREFIX/bin
36 DATADIR =$$PREFIX/share
37
38 DEFINES += DATADIR=\\\"$$DATADIR\\\" PKGDATADIR=\\\"$$PKGDATADIR\\\"
39
40 #MAKE INSTALL
41
42 INSTALLS += target desktop iconxpm icon26 icon48 icon64
43
44   target.path = $$PREFIX/lib/hildon-desktop
45
46   desktop.path = $$PREFIX/share/applications/hildon-home
47   desktop.files += $${TARGET}.desktop
48
49   iconxpm.path = $$DATADIR/pixmap
50   iconxpm.files += ../data/maemo/$${TARGET}.xpm
51
52   icon26.path = $$DATADIR/icons/hicolor/26x26/apps
53   icon26.files += ../data/26x26/$${TARGET}.png
54
55   icon48.path = $$DATADIR/icons/hicolor/48x48/apps
56   icon48.files += ../data/48x48/$${TARGET}.png
57
58   icon64.path = $$DATADIR/icons/hicolor/64x64/apps
59   icon64.files += ../data/64x64/$${TARGET}.png
60 }
61