blob: 565e652bfca7ada992e53da34a4d27831349b122 (
plain)
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
|
include(UseGSettings)
###########################
# Indicator service
###########################
set(
INDICATOR_DIR
"${CMAKE_INSTALL_DATADIR}/unity/indicators"
CACHE FILEPATH "Indicator directory"
)
install(
FILES "com.canonical.indicator.sound"
DESTINATION "${INDICATOR_DIR}"
)
###########################
# Upstart Job
###########################
set(
INDICATOR_SOUND_CONF
"${CMAKE_CURRENT_BINARY_DIR}/indicator-sound.conf"
)
configure_file(
"indicator-sound.conf.in"
${INDICATOR_SOUND_CONF}
@ONLY
)
install(
FILES "${INDICATOR_SOUND_CONF}"
DESTINATION "${CMAKE_INSTALL_DATADIR}/upstart/sessions/"
)
###########################
# XDG Autostart
###########################
set(
INDICATOR_SOUND_XDG_AUTOSTART
"${CMAKE_CURRENT_BINARY_DIR}/indicator-sound.desktop"
)
configure_file(
"indicator-sound.desktop.in"
${INDICATOR_SOUND_XDG_AUTOSTART}
@ONLY
)
install(
FILES "${INDICATOR_SOUND_XDG_AUTOSTART}"
DESTINATION "/etc/xdg/autostart"
)
###########################
# GSettings
###########################
add_schema ("com.canonical.indicator.sound.gschema.xml")
|