blob: e71051e85d6c0d031a6d93ba724ed27f52493c34 (
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
|
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}"
)
###########################
# Dbus Service
###########################
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/"
)
###########################
# GSettings
###########################
add_schema ("com.canonical.indicator.sound.gschema.xml")
|