updating changelog
[profile/ivi/hfdialer.git] / projects.pro
1 VERSION = 0.3.5
2 CONFIG += link_pkgconfig network opengl
3
4 TEMPLATE = subdirs
5 CONFIG += ordered 
6 SUBDIRS = src qml dialerassets sounds
7
8 OTHER_FILES += *.service *.desktop *.sh
9
10 # Desktop
11 desktop_entry.files = dialer.desktop
12 desktop_entry.path += $$INSTALL_ROOT/usr/share/applications
13 desktop_entry.CONFIG += no_check_exist
14
15 # DBus service
16 dbus_service.files = dialer.service
17 dbus_service.path += $$INSTALL_ROOT/usr/share/dbus-1/services
18
19 dbus_conf.files = hfdialer.conf
20 dbus_conf.path += $$INSTALL_ROOT/etc/dbus-1/system.d
21
22 # Documentation
23 documentation.files = AUTHORS ChangeLog LICENSE README TODO
24 documentation.path  = $$INSTALL_ROOT/usr/share/hfdialer/
25
26 INSTALLS += \
27     desktop_entry \
28     dbus_service \
29     dbus_conf \
30     documentation \
31
32 PROJECT_NAME = hfdialer
33
34 dist.commands += rm -fR $${PROJECT_NAME}-$${VERSION} &&
35 dist.commands += git clone . $${PROJECT_NAME}-$${VERSION} &&
36 dist.commands += rm -fR $${PROJECT_NAME}-$${VERSION}/.git &&
37 dist.commands += tar jcpvf $${PROJECT_NAME}-$${VERSION}.tar.bz2 $${PROJECT_NAME}-$${VERSION}
38 QMAKE_EXTRA_TARGETS += dist