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
|
name = 'bluetooth-sendto'
executable(
name,
'main.c',
include_directories: top_inc,
dependencies: libgnome_bluetooth_dep,
install: true,
)
install_man(name + '.1')
desktop_conf = configuration_data()
desktop_conf.set('VERSION', gnomebt_version)
desktop = name + '.desktop'
desktop_in = configure_file(
input: desktop + '.in.in',
output: '@BASENAME@',
configuration: desktop_conf,
)
i18n.merge_file (
desktop,
type: 'desktop',
input: desktop_in,
output: desktop,
po_dir: po_dir,
install: true,
install_dir: gnomebt_datadir / 'applications',
)
|