Skip to content

Latest commit

 

History

History
53 lines (41 loc) · 1.2 KB

src.pro

File metadata and controls

53 lines (41 loc) · 1.2 KB
 
Jul 19, 2012
Jul 19, 2012
1
2
3
TARGET = voicecall-manager
TEMPLATE = app
QT = core dbus
Jun 12, 2013
Jun 12, 2013
4
CONFIG += link_pkgconfig
Jul 19, 2012
Jul 19, 2012
5
6
INCLUDEPATH += ../lib/src
Sep 25, 2012
Sep 25, 2012
7
May 27, 2019
May 27, 2019
8
9
10
11
enable-nemo-devicelock {
PKGCONFIG += libresourceqt5 nemodevicelock
DEFINES += WITH_NEMO_DEVICELOCK
}
Oct 26, 2014
Oct 26, 2014
12
13
14
15
16
17
18
19
packagesExist(qt5-boostable) {
DEFINES += HAS_BOOSTER
PKGCONFIG += qt5-boostable
} else {
warning("qt5-boostable not available; startup times will be slower")
}
Jun 12, 2013
Jun 12, 2013
20
21
QT += multimedia # for basic ringtone plugin.
LIBS += -L../lib/src -lvoicecall
Jul 19, 2012
Jul 19, 2012
22
23
24
25
HEADERS += \
dbus/voicecallmanagerdbusservice.h \
basicvoicecallconfigurator.h \
Nov 2, 2012
Nov 2, 2012
26
27
voicecallmanager.h \
basicringtonenotificationprovider.h
Jul 19, 2012
Jul 19, 2012
28
29
30
31
32
SOURCES += \
dbus/voicecallmanagerdbusservice.cpp \
basicvoicecallconfigurator.cpp \
voicecallmanager.cpp \
Nov 2, 2012
Nov 2, 2012
33
34
main.cpp \
basicringtonenotificationprovider.cpp
Jul 19, 2012
Jul 19, 2012
35
May 27, 2019
May 27, 2019
36
37
38
39
40
41
enable-audiopolicy {
HEADERS += audiocallpolicyproxy.h
SOURCES += audiocallpolicyproxy.cpp
DEFINES += WITH_AUDIOPOLICY
}
Jul 19, 2012
Jul 19, 2012
42
43
44
target.path = /usr/bin
INSTALLS += target
Jun 12, 2013
Jun 12, 2013
45
46
47
48
49
50
OTHER_FILES += voicecall-manager.desktop voicecall-manager.service
systemd_service_entry.files = voicecall-manager.service
systemd_service_entry.path = /usr/lib/systemd/user
May 27, 2019
May 27, 2019
51
52
53
install-servicefiles {
INSTALLS += systemd_service_entry
}