-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoggleavailability.pro
66 lines (51 loc) · 1.45 KB
/
toggleavailability.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#-------------------------------------------------
#
# Project created by QtCreator 2012-04-24T22:45:10
#
#-------------------------------------------------
QT += core dbus
QT -= gui
TARGET = toggleavailability
CONFIG += console
CONFIG -= app_bundle
CONFIG += link_pkgconfig
PKGCONFIG += accounts-qt
PKGCONFIG += TelepathyQt4
TEMPLATE = app
SOURCES += main.cpp \
toggleavailability.cpp
contains(MEEGO_EDITION,harmattan) {
target.path = /opt/toggleavailability/bin
INSTALLS += target
}
OTHER_FILES += \
qtc_packaging/debian_harmattan/rules \
qtc_packaging/debian_harmattan/README \
qtc_packaging/debian_harmattan/manifest.aegis \
qtc_packaging/debian_harmattan/copyright \
qtc_packaging/debian_harmattan/control \
qtc_packaging/debian_harmattan/compat \
qtc_packaging/debian_harmattan/changelog
HEADERS += \
toggleavailability.h
# Copied from qmlapplicationviewer
installPrefix = /opt/$${TARGET}
desktopfile.files = $${TARGET}_harmattan.desktop
desktopfile.path = /usr/share/applications
icon.files = $${TARGET}80.png
icon.path = /usr/share/icons/hicolor/80x80/apps
export(icon.files)
export(icon.path)
export(desktopfile.files)
export(desktopfile.path)
INSTALLS += icon desktopfile
target.path = $${installPrefix}/bin
export(target.path)
INSTALLS += target
export (ICON)
export (INSTALLS)
export (DEPLOYMENT)
export (TARGET.EPOCHEAPSIZE)
export (TARGET.CAPABILITY)
export (LIBS)
export (QMAKE_EXTRA_TARGETS)