Reset indicator when the screen is locked
[ameter] / ameter.pro
1 CONFIG += mobility qdbus
2 MOBILITY += sensors
3 QT += dbus
4
5 SOURCES += main.cpp \
6     mainwindow.cpp \
7     ameterwidget.cpp \
8     asettings.cpp \
9     about.cpp
10
11 HEADERS += mainwindow.h \
12     ameterwidget.h \
13     asettings.h \
14     about.h
15
16 FORMS +=
17
18 unix {
19     isEmpty(PREFIX) {
20         PREFIX = /usr
21     }
22     INSTALLS += target desktop icon64
23
24     target.path = $$PREFIX/bin
25
26     desktop.path = $$PREFIX/share/applications/hildon
27     desktop.files += ameter.desktop
28
29     icon64.path = $$PREFIX/share/icons/hicolor/64x64/apps
30     icon64.files = ameter.png
31 }
32